diff options
Diffstat (limited to 'tests/lib/appconfig.php')
-rw-r--r-- | tests/lib/appconfig.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/appconfig.php b/tests/lib/appconfig.php index 1f605263560..29b29778fd2 100644 --- a/tests/lib/appconfig.php +++ b/tests/lib/appconfig.php @@ -36,7 +36,7 @@ class Test_Appconfig extends PHPUnit_Framework_TestCase { } public function testGetApps() { - $query = \OC_DB::prepare('SELECT DISTINCT `appid` FROM `*PREFIX*appconfig`'); + $query = \OC_DB::prepare('SELECT DISTINCT `appid` FROM `*PREFIX*appconfig` ORDER BY `appid`'); $result = $query->execute(); $expected = array(); while ($row = $result->fetchRow()) { |