Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
MichelleArk committed Sep 13, 2023
1 parent 29445b4 commit a8d01ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/functional/show/test_show.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,8 @@ def test_limit(self, project, args, expected):
results = run_dbt(dbt_args)
assert len(results.results[0].agate_table) == expected
# ensure limit was injected in compiled_code when limit specified in command args
if results.args.get('limit') > 0:
assert 'limit' in results.results[0].node.compiled_code
if results.args.get("limit") > 0:
assert "limit" in results.results[0].node.compiled_code


class TestShowSeed(ShowBase):
Expand Down

0 comments on commit a8d01ee

Please sign in to comment.