Skip to content

Commit e6947e9

Browse files
committed
fix: fix uuids
1 parent 44a024a commit e6947e9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/query_farm_airport_test_server/server.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -905,7 +905,10 @@ def in_out_handler(
905905
[30, 32],
906906
[datetime.datetime(2023, 10, 1), datetime.datetime(2024, 10, 2)],
907907
["{}", "[1,2,3]"],
908-
[uuid.uuid4().bytes, uuid.uuid4().bytes],
908+
[
909+
bytes.fromhex("b975e4187a6d4afdb1a41f7174ce1805"),
910+
bytes.fromhex("7ef19ab7c7af4f0188c386fae862fd60"),
911+
],
909912
[datetime.date(2023, 10, 1), datetime.date(2024, 10, 2)],
910913
[True, False],
911914
["Ann", None],

0 commit comments

Comments
 (0)