Skip to content

Commit e959a48

Browse files
1 parent 39f7ce0 commit e959a48

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

‎tests/unit/test_schema.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -841,7 +841,7 @@ def test_unknown_properties(self):
841841
"anotherNewProperty": "another-test",
842842
},
843843
]
844-
844+
845845
# Make sure the setter doesn't mutate schema.
846846
expected_schema = copy.deepcopy(schema)
847847

‎tests/unit/test_table.py‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -733,12 +733,12 @@ def test_schema_setter_allows_unknown_properties(self):
733733
"anotherNewProperty": "another-test",
734734
},
735735
]
736-
736+
737737
# Make sure the setter doesn't mutate schema.
738738
expected_schema = copy.deepcopy(schema)
739-
739+
740740
table.schema = schema
741-
741+
742742
# _properties should include all fields, including unknown ones.
743743
assert table._properties["schema"]["fields"] == expected_schema
744744

0 commit comments

Comments
 (0)