Skip to content

Commit d58cb2d

Browse files
committed
Fix silly bug
1 parent de5a0a0 commit d58cb2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_postgres_options_plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def test_postgres_port_search_count_in_cli_is_int(pointed_pytester: Pytester) ->
6161
"""Check that the --postgresql-port-search-count command line argument is parsed as an int."""
6262
pointed_pytester.copy_example("test_assert_port_search_count_is_ten.py")
6363
ret = pointed_pytester.runpytest(
64-
"--postgresql-port-search-count", "test_assert_port_search_count_is_ten.py"
64+
"--postgresql-port-search-count", "10", "test_assert_port_search_count_is_ten.py"
6565
)
6666
ret.assert_outcomes(passed=1)
6767

0 commit comments

Comments
 (0)