summaryrefslogtreecommitdiff
path: root/grc/tests/test_block_flags.py
diff options
context:
space:
mode:
authorMarcus Müller <mmueller@gnuradio.org>2019-10-27 14:28:24 +0100
committerMarcus Müller <marcus@hostalia.de>2019-11-01 15:41:00 +0100
commit02890496caeea1e48c9d0977ad1bf495c83bbf4f (patch)
treee20f0f5a2448fe2911291686eafae0d789ca06df /grc/tests/test_block_flags.py
parent8261565a805d3d3beb68b9e716786bf41e03a2f5 (diff)
GRC: testing: can't rely on set ordering; sets are unordered
Diffstat (limited to 'grc/tests/test_block_flags.py')
-rw-r--r--grc/tests/test_block_flags.py2
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'}