6377: Fix reversed condition in "site application.yml is optional" fix.
[arvados.git] / 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):