From 8ec13c3aba85866505abdaf15a4eb55ec46f1e5a Mon Sep 17 00:00:00 2001 From: Dave Pearson Date: Mon, 20 Feb 2023 21:24:48 +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 00cd8d52d..e7f5f008b 100644 --- a/tests/css/test_parse.py +++ b/tests/css/test_parse.py @@ -1209,9 +1209,9 @@ class TestTypeNames: stylesheet.parse() def test_combined_type_no_number(self): - for seperator in " >,": + for separator in " >,": stylesheet = Stylesheet() - stylesheet.add_source(f"StartType {seperator} TestType {{}}") + stylesheet.add_source(f"StartType {separator} TestType {{}}") assert len(stylesheet.rules) == 1 def test_combined_type_with_number(self):