Skip to content

Commit

Permalink
Fix integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
pvk-developer committed Aug 7, 2024
1 parent 6ea14cf commit 2e25c3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/evaluation/test_single_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ def test_evaluation_metadata():
"""Test ``evaluate_quality`` and ``run_diagnostic`` with Metadata."""
# Setup
data = pd.DataFrame({'col': [1, 2, 3]})
metadata = Metadata()
metadata.add_column('col', sdtype='numerical')
metadata_dict = {'columns': {'col': {'sdtype': 'numerical'}}}
metadata = Metadata.load_from_dict(metadata_dict)
synthesizer = GaussianCopulaSynthesizer(metadata, default_distribution='truncnorm')

# Run and Assert
Expand Down

0 comments on commit 2e25c3f

Please sign in to comment.