From 1e0f29a661ffad7856cff56101b751538ab25379 Mon Sep 17 00:00:00 2001 From: eslopfer Date: Wed, 25 Jan 2023 17:34:47 +0000 Subject: [PATCH] chore(concat_string_test): move to right repository --- sh/tests/concat_string_test.py | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 sh/tests/concat_string_test.py diff --git a/sh/tests/concat_string_test.py b/sh/tests/concat_string_test.py deleted file mode 100644 index 00830a3c..00000000 --- a/sh/tests/concat_string_test.py +++ /dev/null @@ -1,13 +0,0 @@ -import sys - -sys.path.append('student') - -from concat_string import concat - -def test_concat(): - assert concat("Hello", "World") == "Hello, World" - assert concat("Hi", "there") == "Hi, there" - assert concat("", "") == ", " - assert concat("Hello", "") == "Hello, " - assert concat("", "World") == ", World" -test_concat()