Skip to content

Commit 07553a2

Browse files
committed
Fix typo in test
1 parent 9ab9a92 commit 07553a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_relation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ def relation_selector(attr):
309309
for name, rel in getmembers(schema, relation_selector):
310310
assert re.match(
311311
rel.tier_regexp, rel.table_name
312-
) == "Regular expression does not match for {name}".format(name=name)
312+
), "Regular expression does not match for {name}".format(name=name)
313313
for tier in tiers:
314314
assert issubclass(rel, tier) or not re.match(
315315
tier.tier_regexp, rel.table_name

0 commit comments

Comments
 (0)