Skip to content

Commit

Permalink
Merge pull request #466 from Crunch-io/fix-failing-execute-script-test
Browse files Browse the repository at this point in the history
fix failing integration test that was not refactored after last update
  • Loading branch information
aless10 authored Aug 2, 2024
2 parents db4dfea + 940e4bf commit 9d01e8b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions integration/test_projects.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,5 +119,6 @@ def test_move_dataset(self):

def test_execute_script(self):
pa = self.new_project("test_run_script")
# Successful server execution does not raise. Method returns None on OK
assert pa.execute("NOOP;") is None
# Successful server execution return a response
response = pa.execute("NOOP;")
assert response.ok is True

0 comments on commit 9d01e8b

Please sign in to comment.