From 5ea01df69bf0ae9aabd8ac1f872f5bc7ae08e70f Mon Sep 17 00:00:00 2001 From: Rhet Turnbull Date: Mon, 21 Jun 2021 06:34:56 -0700 Subject: [PATCH] Bug fix --- tests/test_configoptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_configoptions.py b/tests/test_configoptions.py index 3ec8a59c..31ddd49e 100644 --- a/tests/test_configoptions.py +++ b/tests/test_configoptions.py @@ -16,7 +16,7 @@ VARS = {"foo": "bar", "bar": False, "test1": (), "test2": None, "test2_setting": def test_init(): cfg = ConfigOptions("test", VARS) assert isinstance(cfg, ConfigOptions) - assert cfg.foo is "bar" + assert cfg.foo == "bar" assert cfg.bar == False assert type(cfg.test1) == tuple