Skip to content

Commit

Permalink
Update.
Browse files Browse the repository at this point in the history
  • Loading branch information
takkii committed Oct 24, 2023
1 parent 4361c47 commit d091ba1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions unit_test_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ def test_check_major(self):
print("test_check_major", id(self))
self.assertLess(major_calc, set_major)

# Python Version: (x.11 or x.10) > 0
# Python Version: (x.11 or x.10) > 4
def test_check_minor(self):
py_minor: Optional[int] = sys.version_info[1]
minor_calc = int(py_minor)
set_minor = int(0)
set_minor = int(4)
print("test_check_minor", id(self))
self.assertGreater(minor_calc, set_minor)

Expand Down

0 comments on commit d091ba1

Please sign in to comment.