Commit fcd3ca68 authored by Jérome Perrin's avatar Jérome Perrin

nextcloud/test: fix assertion order

multi line diff are more natural in -expected +actual order
parent f05b5b81
...@@ -244,7 +244,7 @@ class TestServices(NextCloudTestCase): ...@@ -244,7 +244,7 @@ class TestServices(NextCloudTestCase):
config_dict.pop('secret') config_dict.pop('secret')
config_dict.pop('version') config_dict.pop('version')
expected_dict = self.getNextcloudConfig() expected_dict = self.getNextcloudConfig()
self.assertEqual(config_dict, expected_dict) self.assertEqual(expected_dict, config_dict)
collabora_config = subprocess.check_output([ collabora_config = subprocess.check_output([
php_bin, php_bin,
occ, occ,
...@@ -341,7 +341,7 @@ class TestNextCloudParameters(NextCloudTestCase): ...@@ -341,7 +341,7 @@ class TestNextCloudParameters(NextCloudTestCase):
]) ])
) )
expected_dict = self.getNextcloudConfig(instance_parameter_dict) expected_dict = self.getNextcloudConfig(instance_parameter_dict)
self.assertEqual(config_dict, expected_dict) self.assertEqual(expected_dict, config_dict)
collabora_config = subprocess.check_output([ collabora_config = subprocess.check_output([
php_bin, php_bin,
occ, occ,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment