Skip to content

Commit 4a3a10b

Browse files
committed
Swift: fix ignored codegen unit test
1 parent 8c60aee commit 4a3a10b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

swift/codegen/test/test_ql.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def test_property_is_repeated(plural, expected):
5757
(True, False, None, False),
5858
(False, True, None, False),
5959
])
60-
def test_property_is_repeated(is_optional, is_predicate, plural, expected):
60+
def test_property_is_single(is_optional, is_predicate, plural, expected):
6161
prop = ql.Property("foo", "Foo", "props", ["x"], plural=plural, is_predicate=is_predicate, is_optional=is_optional)
6262
assert prop.is_single is expected
6363

0 commit comments

Comments
 (0)