Skip to content

Commit

Permalink
fix(Ruff): Fix quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
geido committed Oct 4, 2024
1 parent 453ca98 commit 4f326db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration_tests/datasource/api_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ def test_get_column_values_with_rls(self):
)
self.assertEqual(rv.status_code, 200)
response = json.loads(rv.data.decode("utf-8"))
self.assertEqual(response["result"], ['b'])
self.assertEqual(response["result"], ["b"])

@pytest.mark.usefixtures("app_context", "virtual_dataset")
def test_get_column_values_with_rls_no_values(self):
Expand Down

0 comments on commit 4f326db

Please sign in to comment.