-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
1 addition
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -83,7 +83,7 @@ def test_create_schema_metadata_from_dict(self): | |
assert schema_metadata.owners == [Owner(name="Test", email="[email protected]")] | ||
assert schema_metadata.description == "test" | ||
assert schema_metadata.update_behaviour == "OVERWRITE" | ||
assert schema_metadata.is_latest_version == True | ||
assert schema_metadata.is_latest_version | ||
|
||
|
||
class TestColumn: | ||
|
@@ -276,14 +276,12 @@ def test_schema_returns_correct_dictionary(self): | |
"domain": "test", | ||
"dataset": "rapid_sdk", | ||
"sensitivity": SensitivityLevel.PUBLIC, | ||
"description": "", | ||
"update_behaviour": UpdateBehaviour.APPEND, | ||
"owners": [{"name": "Test", "email": "[email protected]"}], | ||
"version": None, | ||
"key_value_tags": {}, | ||
"key_only_tags": [], | ||
"description": "test", | ||
"update_behaviour": "OVERWRITE", | ||
"is_latest_version": True, | ||
}, | ||
"columns": [ | ||
|