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:25:03 +00:00
committed by GitHub
parent 8ec13c3aba
commit e8e00b1920

View File

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