Skip to content

Commit

Permalink
Fix integration test for workflow linter
Browse files Browse the repository at this point in the history
  • Loading branch information
JCZuurmond committed Nov 19, 2024
1 parent c6d0ed3 commit 0e66e58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/source_code/test_jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def test_linter_from_context(simple_ctx, make_job) -> None:
# Ensure we have at least 1 job that fails: "Deprecated file system path in call to: /mnt/things/e/f/g"
job = make_job(content="spark.read.table('a_table').write.csv('/mnt/things/e/f/g')\n")
simple_ctx.config.include_job_ids = [job.job_id]
simple_ctx.workflow_linter.refresh_report()
simple_ctx.workflow_linter.refresh_report(simple_ctx.sql_backend, simple_ctx.inventory_database)

# Verify that the 'problems' table has content.
cursor = simple_ctx.sql_backend.fetch(
Expand Down

0 comments on commit 0e66e58

Please sign in to comment.