Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
hughhhh committed Jul 25, 2021
1 parent c24e074 commit 29deada
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
5 changes: 1 addition & 4 deletions tests/integration_tests/databases/api_tests.py
Expand Up @@ -1573,10 +1573,7 @@ def test_available(self, app, get_available_engine_specs):
"engine": "gsheets",
"name": "Google Sheets",
"parameters": {
"properties": {
"catalog": {"type": "object"},
"query": {"type": "object"},
},
"properties": {"catalog": {"type": "object"},},
"type": "object",
},
"preferred": False,
Expand Down
3 changes: 0 additions & 3 deletions tests/unit_tests/db_engine_specs/test_gsheets.py
Expand Up @@ -37,7 +37,6 @@ def test_validate_parameters_simple(

parameters: GSheetsParametersType = {
"credentials_info": {},
"query": {},
"catalog": {},
}
errors = GSheetsEngineSpec.validate_parameters(parameters)
Expand Down Expand Up @@ -66,7 +65,6 @@ def test_validate_parameters_catalog(

parameters: GSheetsParametersType = {
"credentials_info": {},
"query": {},
"catalog": {
"private_sheet": "https://docs.google.com/spreadsheets/d/1/edit",
"public_sheet": "https://docs.google.com/spreadsheets/d/1/edit#gid=1",
Expand Down Expand Up @@ -141,7 +139,6 @@ def test_validate_parameters_catalog_and_credentials(

parameters: GSheetsParametersType = {
"credentials_info": {},
"query": {},
"catalog": {
"private_sheet": "https://docs.google.com/spreadsheets/d/1/edit",
"public_sheet": "https://docs.google.com/spreadsheets/d/1/edit#gid=1",
Expand Down

0 comments on commit 29deada

Please sign in to comment.