Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Internal
--------
* Let CI ignore additional documentation files.
* Add a GitHub Issue template.
* Upgrade `cli_helpers` library to v2.10.0.


1.51.1 (2026/02/09)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dependencies = [
"sqlparse>=0.3.0,<0.6.0",
"sqlglot[rs] == 27.*",
"configobj >= 5.0.5",
"cli_helpers[styles] >= 2.9.0",
"cli_helpers[styles] >= 2.10.0",
"pyperclip >= 1.8.1",
"pycryptodomex",
"pyfzf >= 0.3.1",
Expand Down
4 changes: 2 additions & 2 deletions test/test_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def test_binary_display_hex(executor, capsys):
None,
)
m.output(formatted, sqlresult.status)
expected = "+-------------+\n| binary_test |\n+-------------+\n| 0x6a |\n+-------------+\n1 row in set\n"
expected = " 0x6a "
stdout = capsys.readouterr().out
assert expected in stdout

Expand Down Expand Up @@ -114,7 +114,7 @@ def test_binary_display_utf8(executor, capsys):
None,
)
m.output(formatted, sqlresult.status)
expected = "+-------------+\n| binary_test |\n+-------------+\n| j |\n+-------------+\n1 row in set\n"
expected = " j "
stdout = capsys.readouterr().out
assert expected in stdout

Expand Down
Loading