Skip to content

Commit

Permalink
Fix missing newline at end of file in test_spark_app_route.py
Browse files Browse the repository at this point in the history
  • Loading branch information
xuwenyihust committed Aug 22, 2024
1 parent c2bebc7 commit 5e59130
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/tests/routes/test_spark_app_route.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ def test_create_spark_app(self):
data=json.dumps(data),
)

print(response.data)
self.assertEqual(response.status_code, 200)
self.assertEqual(json.loads(response.data)['spark_app_id'], spark_app_id)
self.assertEqual(json.loads(response.data)['notebook_id'], notebook.id)
self.assertEqual(json.loads(response.data)['user_id'], notebook.user_id)

0 comments on commit 5e59130

Please sign in to comment.