Fix variable name typo

Co-authored-by: Rodrigo Girão Serrão <5621605+rodrigogiraoserrao@users.noreply.github.com>
This commit is contained in:
Dave Pearson
2023-02-20 21:24:48 +00:00
committed by GitHub
parent f785a51769
commit 8ec13c3aba

View File

@@ -1209,9 +1209,9 @@ class TestTypeNames:
stylesheet.parse() stylesheet.parse()
def test_combined_type_no_number(self): def test_combined_type_no_number(self):
for seperator in " >,": for separator in " >,":
stylesheet = Stylesheet() stylesheet = Stylesheet()
stylesheet.add_source(f"StartType {seperator} TestType {{}}") stylesheet.add_source(f"StartType {separator} TestType {{}}")
assert len(stylesheet.rules) == 1 assert len(stylesheet.rules) == 1
def test_combined_type_with_number(self): def test_combined_type_with_number(self):