diff options
| author | Mohammad S Anwar <Mohammad.Anwar@yahoo.com> | 2022-07-14 09:12:32 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-14 09:12:32 +0100 |
| commit | 42d08a3c6102c5f1ee77af445d72e50c67ef94e0 (patch) | |
| tree | 5ccb409529284697372f80e9c38b3f47e14494e6 | |
| parent | 47b189c896e6478d5e74dc74d6e91fa6cbaffab9 (diff) | |
| download | perlweeklychallenge-club-42d08a3c6102c5f1ee77af445d72e50c67ef94e0.tar.gz perlweeklychallenge-club-42d08a3c6102c5f1ee77af445d72e50c67ef94e0.tar.bz2 perlweeklychallenge-club-42d08a3c6102c5f1ee77af445d72e50c67ef94e0.zip | |
Update ch-1.py
| -rw-r--r-- | challenge-173/mohammad-anwar/python/ch-1.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-173/mohammad-anwar/python/ch-1.py b/challenge-173/mohammad-anwar/python/ch-1.py index 5d9e80c567..89671c258a 100644 --- a/challenge-173/mohammad-anwar/python/ch-1.py +++ b/challenge-173/mohammad-anwar/python/ch-1.py @@ -27,7 +27,7 @@ def is_esthetic_number(n): # # Unit test class -class TestPrimePartition(unittest.TestCase): +class TestEstheticNumber(unittest.TestCase): def test_example_1(self): self.assertTrue(is_esthetic_number(5456)) |
