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)