Skip to content

Commit

Permalink
casting exception + fix ip infer
Browse files Browse the repository at this point in the history
  • Loading branch information
ohadmata committed Jan 21, 2024
1 parent 2a9ad63 commit 4e4849e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/test_numeric_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def test_numeric_type(df_data, expected_shmessy_type, expected_numpy_type):
def test_dataframe_with_10k_numeric_records_and_single_string():
line_number = 9465
bad_value = "string value"
shmessy = Shmessy()
shmessy = Shmessy(sample_size=10)
data = [x for x in range(10000)]
data[line_number] = "string value" # noqa
df = pd.DataFrame({"test_column": data})
Expand Down

0 comments on commit 4e4849e

Please sign in to comment.