Skip to content

Commit

Permalink
add check_obj as an arg and small improvements
Browse files Browse the repository at this point in the history
Signed-off-by: Filipe Oliveira <[email protected]>
  • Loading branch information
filipeo2-mck committed Nov 13, 2023
1 parent ee0e42c commit 952bef3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/pyspark/test_pyspark_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ class TestSchema(DataFrameModel):
}

assert CONFIG.dict() == expected
assert pandera_schema.validate(input_df) is not None
assert TestSchema.validate(input_df) is not None
assert pandera_schema.validate(input_df)
assert TestSchema.validate(input_df)

# pylint:disable=too-many-locals
def test_schema_only(self, spark, sample_spark_schema):
Expand Down

0 comments on commit 952bef3

Please sign in to comment.