Skip to content

Commit 8d79b41

Browse files
authored
Draft 04: test_uuid7_time_from_hex (#48)
1 parent 7c329e3 commit 8d79b41

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test_vectors.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ def test_uuid6_time_from_hex(self):
2929
self.assertEqual(uuid_6.time, uuid_1.time)
3030

3131
def test_uuid7_time_from_hex(self):
32-
uuid_7 = UUID(hex="017F21CF-D130-7CC3-98C4-DC0C0C07398F")
33-
self.assertEqual(uuid_7.time // 10**6, 1645539742000)
32+
uuid_7 = UUID(hex="017F22E2-79B0-7CC3-98C4-DC0C0C07398F")
33+
self.assertEqual(uuid_7.time // 10**6, 1645557742000)
3434

3535

3636
if __name__ == "__main__":

0 commit comments

Comments
 (0)