Skip to content

Commit

Permalink
rename tests
Browse files Browse the repository at this point in the history
  • Loading branch information
TreWilkins committed Feb 15, 2025
1 parent 48f2a9a commit 32ea2d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/admin/test_telephony.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def test_get_telephony_logs_v2_no_args(self):
self.assertEqual(param_dict["limit"], ["100"])

@freeze_time("2022-10-01")
def test_get_telephony_logs_v2_with_kwargs(self):
def test_get_telephony_logs_v2_with_args(self):
mintime = datetime(2022, 9, 1, 0, 0, 0, tzinfo=pytz.utc)
expected_mintime = str(int(mintime.timestamp() * 1000))
maxtime = datetime(2022, 10, 1, 0, 0, 0, tzinfo=pytz.utc)
Expand All @@ -55,7 +55,7 @@ def test_get_telephony_logs_v2_with_kwargs(self):
self.assertEqual(param_dict["limit"], ["900"])

@freeze_time("2022-10-01")
def test_get_telephony_logs_v2_with_unsupported_kwargs(self):
def test_get_telephony_logs_v2_with_unsupported_args(self):
params = {
"unsupported": "argument",
"non_existent": "argument"
Expand Down

0 comments on commit 32ea2d8

Please sign in to comment.