From 6026cef33566e9c79a74aa33c33945c04f9872b2 Mon Sep 17 00:00:00 2001 From: zaihuaji Date: Thu, 16 Jan 2025 11:41:21 -0600 Subject: [PATCH] for code with 3 leading spaces --- tests/test_hello_world.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_hello_world.py b/tests/test_hello_world.py index 673d846..0e2ce45 100644 --- a/tests/test_hello_world.py +++ b/tests/test_hello_world.py @@ -4,8 +4,8 @@ from src.rda_python_template.hello_world import get_string def test_get_string(): - assert get_string('Bob') == 'Bob: Hello World!' + assert get_string('Bob') == 'Bob: Hello World!' def test_raises_exception_on_non_string_arguments(): - with pytest.raises(TypeError): - get_string(9) + with pytest.raises(TypeError): + get_string(9)