Skip to content

Commit ace3a22

Browse files
committed
Merge PR #220 into 18.0
Signed-off-by etobella
2 parents 3a6f9fe + ed4724a commit ace3a22

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

server_environment/tests/test_environment_variable.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ def test_env_variables(self):
2424
secret = "[section]\n" "bar=foo\n" "alice=bob\n"
2525
with self.set_config_dir(None), self.set_env_variables(public, secret):
2626
parser = server_env._load_config()
27-
self.assertEqual(list(parser.keys()), ["DEFAULT", "section"])
27+
self.assertIn("DEFAULT", list(parser.keys()))
28+
self.assertIn("section", list(parser.keys()))
2829
self.assertDictEqual(
2930
dict(parser["section"].items()),
3031
{"alice": "bob", "bar": "foo", "foo": "bar"},

0 commit comments

Comments
 (0)