6377: Fix reversed condition in "site application.yml is optional" fix.
authorTom Clegg <tom@curoverse.com>
Tue, 30 Jun 2015 15:20:38 +0000 (11:20 -0400)
committerTom Clegg <tom@curoverse.com>
Wed, 8 Jul 2015 05:36:05 +0000 (01:36 -0400)
sdk/python/tests/test_arv_put.py

index d337023a6192c4679cd04807e3cdca3cfa496b6f..f4bd8b692bc2520cdda8a679abbb3c2d18ff85dd 100644 (file)
@@ -414,7 +414,7 @@ class ArvPutIntegrationTest(run_test_server.TestCaseWithServers,
                             ArvadosBaseTestCase):
     def _getKeepServerConfig():
         for config_file, mandatory in [
-                ['application.yml', True], ['application.default.yml', False]]:
+                ['application.yml', False], ['application.default.yml', True]]:
             path = os.path.join(run_test_server.SERVICES_SRC_DIR,
                                 "api", "config", config_file)
             if not mandatory and not os.path.exists(path):