Skip to content

Commit

Permalink
Fix tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
amjith committed Jan 19, 2023
1 parent 995d3a9 commit 3374827
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_specials.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def test_slash_l_verbose(executor):
@dbtest
def test_slash_du(executor):
results = executor(r"\du")
row = ("postgres", True, True, True, True, True, -1, None, [], False)
row = ("postgres", True, True, True, True, True, -1, None, [], True)
headers = [
"rolname",
"rolsuper",
Expand All @@ -66,7 +66,7 @@ def test_slash_du(executor):
@dbtest
def test_slash_du_pattern(executor):
results = executor(r"\du post*")
row = [("postgres", True, True, True, True, True, -1, None, [], False)]
row = [("postgres", True, True, True, True, True, -1, None, [], True)]
headers = [
"rolname",
"rolsuper",
Expand All @@ -86,7 +86,7 @@ def test_slash_du_pattern(executor):
@dbtest
def test_slash_du_verbose(executor):
results = executor(r"\du+")
row = ("postgres", True, True, True, True, True, -1, None, [], None, False)
row = ("postgres", True, True, True, True, True, -1, None, [], None, True)
headers = [
"rolname",
"rolsuper",
Expand Down

0 comments on commit 3374827

Please sign in to comment.