Skip to content

Commit 160d669

Browse files
baldwiccsdebruyn
authored andcommitted
fix: correct UINT32 byte values in unit test
1 parent 3f64e05 commit 160d669

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/unit/adapters/sqlserver/test_sql_server_connection_manager.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,15 +85,15 @@ def test_bool_to_connection_string_arg(key: str, value: bool, expected: str) ->
8585
(
8686
bytes(
8787
[
88-
0xE5,
88+
0xE6,
8989
0x07, # 2022 year unsigned short
9090
0x0C,
9191
0x00, # 12 month unsigned short
9292
0x11,
9393
0x00, # 17 day unsigned short
94-
0x16,
94+
0x11,
9595
0x00, # 17 hour unsigned short
96-
0x16,
96+
0x34,
9797
0x00, # 52 minute unsigned short
9898
0x12,
9999
0x00, # 18 second unsigned short

0 commit comments

Comments
 (0)