From 401d66e980a07af577d2e96ba9bbfa51ea47564c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcus=20M=C3=BCller?= Date: Sun, 27 Oct 2019 14:28:24 +0100 Subject: [PATCH] GRC: testing: can't rely on set ordering; sets are unordered --- tests/test_block_flags.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_block_flags.py b/tests/test_block_flags.py index c3dea03..9969eeb 100644 --- a/tests/test_block_flags.py +++ b/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'}