Skip to content

Commit cdf2dd5

Browse files
authored
fix: address typo in error message (#2142)
1 parent 1f48d3a commit cdf2dd5

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
@@ -6034,7 +6034,7 @@ def test_df_astype_python_types(scalars_dfs):
60346034
def test_astype_invalid_type_fail(scalars_dfs):
60356035
bf_df, _ = scalars_dfs
60366036

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

60406040

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)