Skip to content

Commit 55a7281

Browse files
committed
fix
1 parent 2f9b1a3 commit 55a7281

File tree

2 files changed

+1
-11
lines changed

2 files changed

+1
-11
lines changed

.github/workflows/verify.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
include: |
3636
libs/
3737
tests/
38-
test.py
38+
test_libs.py
3939
exclude: |
4040
.github/
4141
code/

test.py renamed to test_libs.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# competitive-verifier: UNITTEST PYTHON_UNITTEST_RESULT
22
import unittest
33

4-
from libs.alias import reverserange
54
from libs.coordinate_compression import compress_1d
65
from libs.grid import coordinate_check, grid_moves
76
from libs.math_func import factorization_plural, is_prime, simple_sigma
@@ -102,14 +101,5 @@ def test_coordinate_compression(self):
102101
self.assertEqual(compress_1d(lis), ans)
103102

104103

105-
class TestAlias(unittest.TestCase):
106-
def test_reverserange(self):
107-
test_cases = [([1, 4], [3, 2, 1]), ([1, 5, 2], [3, 1])]
108-
109-
for args, ans in test_cases:
110-
with self.subTest(args=args):
111-
self.assertEqual(list(reverserange(*args)), ans)
112-
113-
114104
if __name__ == "__main__":
115105
unittest.main()

0 commit comments

Comments
 (0)