Skip to content

Commit d6be72e

Browse files
authored
fix: address typo in error message
1 parent ece0762 commit d6be72e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/system/small/test_dataframe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6028,7 +6028,7 @@ def test_df_astype_python_types(scalars_dfs):
60286028
def test_astype_invalid_type_fail(scalars_dfs):
60296029
bf_df, _ = scalars_dfs
60306030

6031-
with pytest.raises(TypeError, match=r".*Share your usecase with.*"):
6031+
with pytest.raises(TypeError, match=r".*Share your use case with.*"):
60326032
bf_df.astype(123)
60336033

60346034

third_party/bigframes_vendored/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
import bigframes_vendored.version
2424

2525
FEEDBACK_LINK = (
26-
"Share your usecase with the BigQuery DataFrames team at the "
26+
"Share your use case with the BigQuery DataFrames team at the "
2727
"https://bit.ly/bigframes-feedback survey. "
2828
f"You are currently running BigFrames version {bigframes_vendored.version.__version__}."
2929
)

0 commit comments

Comments
 (0)