From b1cbbbd236bf5d63da746d7210cf1bfc36872518 Mon Sep 17 00:00:00 2001 From: Nastiiasaenko <54864655+Nastiiasaenko@users.noreply.github.com> Date: Tue, 12 Dec 2023 21:49:44 -0500 Subject: [PATCH] Update and rename test_app.py to test_main.py --- test_app.py | 6 ------ test_main.py | 5 +++++ 2 files changed, 5 insertions(+), 6 deletions(-) delete mode 100644 test_app.py create mode 100644 test_main.py diff --git a/test_app.py b/test_app.py deleted file mode 100644 index 0602bea..0000000 --- a/test_app.py +++ /dev/null @@ -1,6 +0,0 @@ -def add_smth(a,b): - return a+b - -if __name__ == "__app__": - add_smth() - print("All tests passed.") diff --git a/test_main.py b/test_main.py new file mode 100644 index 0000000..85e733c --- /dev/null +++ b/test_main.py @@ -0,0 +1,5 @@ +def add_smth(a,b): + return a+b + +add_smth(1,2) +print("All tests passed.")