From 25a8530495aed7ca608f84a1dc888ec9daa0c693 Mon Sep 17 00:00:00 2001 From: Petr Vobornik Date: Sat, 18 May 2024 18:59:21 +0200 Subject: [PATCH] test: fix test_smoke The basic test was failing. Signed-off-by: Petr Vobornik --- tests/unit/test_steps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/test_steps.py b/tests/unit/test_steps.py index 29b8c28..686432d 100644 --- a/tests/unit/test_steps.py +++ b/tests/unit/test_steps.py @@ -3,4 +3,4 @@ def test_smoke(): """Smoke test of Step registration.""" - assert type(step_types) == StepTypes + assert isinstance(step_types, StepTypes)