Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
R-Palazzo committed Nov 16, 2023
1 parent a3dc32d commit 896773e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sdmetrics/reports/multi_table/base_multi_table_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def _validate_data_format(self, real_data, synthetic_data):

error_message = (
f'Multi table report {self.__class__.__name__} expects real and synthetic data to be'
' dictionnaries of pandas.DataFrame. If your real and synthetic data are pd.DataFrame,'
' dictionaries of pandas.DataFrame. If your real and synthetic data are pd.DataFrame,'
f' please use the single-table {self.__class__.__name__} instead.'
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def test__validate_data_format(self):
# Run and Assert
expected_message = (
'Multi table report BaseMultiTableReport expects real and synthetic data to be '
'dictionnaries of pandas.DataFrame. If your real and synthetic data are '
'dictionaries of pandas.DataFrame. If your real and synthetic data are '
'pd.DataFrame, please use the single-table BaseMultiTableReport instead.'
)
with pytest.raises(ValueError, match=expected_message):
Expand Down

0 comments on commit 896773e

Please sign in to comment.