summaryrefslogtreecommitdiff
path: root/tests/test_support.py
diff options
context:
space:
mode:
authorHugo <hugovk@users.noreply.github.com>2017-12-28 00:25:54 +0200
committerHugo <hugovk@users.noreply.github.com>2017-12-28 00:25:54 +0200
commit44f509c6ab67a1a7154d0ffbb8e626e80c3d32be (patch)
tree415d6e5b5c3328bf146188efeef8a3944469cb46 /tests/test_support.py
parent66f51babed216adbc4f11aaa715ca355cf88a867 (diff)
downloadbabel-44f509c6ab67a1a7154d0ffbb8e626e80c3d32be.tar.gz
Replace function call with set literal
Diffstat (limited to 'tests/test_support.py')
-rw-r--r--tests/test_support.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_support.py b/tests/test_support.py
index f2a99b7..6f9fb32 100644
--- a/tests/test_support.py
+++ b/tests/test_support.py
@@ -358,4 +358,4 @@ def test_catalog_merge_files():
t2._catalog["bar"] = "quux"
t1.merge(t2)
assert t1.files == ["pro.mo"]
- assert set(t1._catalog.keys()) == set(('', 'foo', 'bar'))
+ assert set(t1._catalog.keys()) == {'', 'foo', 'bar'}