Skip to content

Commit 34107bc

Browse files
committed
refactor: TT-401 changed the variable name
1 parent bdd788d commit 34107bc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

V2/tests/api/azure/time_entry_azure_endpoints_test.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
from time_tracker.time_entries._application import _time_entries as time_entries
1+
import json
22

33
import azure.functions as func
4-
import json
54

5+
from time_tracker.time_entries._application import _time_entries as time_entries
66

7-
ACTIVITY_URL = "/api/time-entries/"
7+
TIME_ENTRY_URL = "/api/time-entries/"
88

99

1010
def test__time_entry_azure_endpoint__creates_an_time_entry__when_time_entry_has_all_attributes(
@@ -18,7 +18,7 @@ def test__time_entry_azure_endpoint__creates_an_time_entry__when_time_entry_has_
1818
req = func.HttpRequest(
1919
method="POST",
2020
body=body,
21-
url=ACTIVITY_URL,
21+
url=TIME_ENTRY_URL,
2222
)
2323

2424
response = time_entries.create_time_entry(req)

0 commit comments

Comments
 (0)