From 335d780f3e37f882e31c2933e410f3914e87f914 Mon Sep 17 00:00:00 2001 From: link2xt Date: Sun, 25 Sep 2022 10:09:26 +0000 Subject: [PATCH] Fix Python test for bcc_self --- python/tests/test_3_offline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/tests/test_3_offline.py b/python/tests/test_3_offline.py index eee852f0d..6030f674c 100644 --- a/python/tests/test_3_offline.py +++ b/python/tests/test_3_offline.py @@ -118,7 +118,7 @@ class TestOfflineAccountBasic: def test_has_bccself(self, acfactory): ac1 = acfactory.get_unconfigured_account() assert "bcc_self" in ac1.get_config("sys.config_keys").split() - assert ac1.get_config("bcc_self") == "0" + assert ac1.get_config("bcc_self") == "1" def test_selfcontact_if_unconfigured(self, acfactory): ac1 = acfactory.get_unconfigured_account()