From e8e00b1920e8618ea2dbaf8a998c55a8072e2985 Mon Sep 17 00:00:00 2001 From: Dave Pearson Date: Mon, 20 Feb 2023 21:25:03 +0000 Subject: [PATCH] Fix variable name typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Rodrigo Girão Serrão <5621605+rodrigogiraoserrao@users.noreply.github.com> --- tests/css/test_parse.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/css/test_parse.py b/tests/css/test_parse.py index e7f5f008b..27c2f6c60 100644 --- a/tests/css/test_parse.py +++ b/tests/css/test_parse.py @@ -1215,9 +1215,9 @@ class TestTypeNames: assert len(stylesheet.rules) == 1 def test_combined_type_with_number(self): - for seperator in " >,": + for separator in " >,": stylesheet = Stylesheet() - stylesheet.add_source(f"StartType {seperator} TestType1 {{}}") + stylesheet.add_source(f"StartType {separator} TestType1 {{}}") assert len(stylesheet.rules) == 1 def test_combined_type_starts_with_number(self):