From 7f6ccaca5b6cc50741f52012c2ae09a9d2bdf6c8 Mon Sep 17 00:00:00 2001 From: "Myeongjin (Daniel)" Date: Mon, 3 Aug 2026 16:49:08 -0400 Subject: [PATCH 1/2] I completed onboarding --- tests/test_introduction.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tests/test_introduction.py b/tests/test_introduction.py index 363bf3a..22572d9 100644 --- a/tests/test_introduction.py +++ b/tests/test_introduction.py @@ -18,6 +18,7 @@ def user_list(self): return [ # add your usernames here "kurbydoo", + "DanisLol", ] def test_kurbydoo(self, user_list): @@ -30,6 +31,11 @@ def test_kurbydoo(self, user_list): assert counter == n * (n - 1) // 2, "Check arithmetic sum" - assert len(user_list) == 1 + assert len(user_list) == 2 ### Add your tests below, follow the format above + def test_danislol(self, user_list): + assert 2 + 2 == 4, "basic math" + + assert True is True + From a0c509e11b6c08bc507a03cd744c797325df2e3f Mon Sep 17 00:00:00 2001 From: "Myeongjin (Daniel)" Date: Mon, 3 Aug 2026 17:11:04 -0400 Subject: [PATCH 2/2] Fix code formatting to pass CI --- tests/test_introduction.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/test_introduction.py b/tests/test_introduction.py index 22572d9..137877d 100644 --- a/tests/test_introduction.py +++ b/tests/test_introduction.py @@ -38,4 +38,3 @@ def test_danislol(self, user_list): assert 2 + 2 == 4, "basic math" assert True is True -