diff options
-rw-r--r-- | grc/tests/test_block_flags.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/tests/test_block_flags.py b/grc/tests/test_block_flags.py index c3dea03740..9969eeb4e4 100644 --- a/grc/tests/test_block_flags.py +++ b/grc/tests/test_block_flags.py @@ -26,4 +26,4 @@ def test_extend(): f.set(u'b') assert isinstance(f, Flags) - assert str(f) == 'a, b' + assert f.data == {'a', 'b'} |