Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
fealho committed Nov 13, 2023
1 parent cc8951f commit 8e8a6e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/metadata/test_visualization.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ def test_visualize_graph_for_single_table():
def test_visualize_graph_for_multi_table():
"""Test it runs when a column name contains symbols."""
# Setup
model = HMASynthesizer(metadata)
data1 = pd.DataFrame({'\\|=/bla@#$324%^,"&*()><...': ['a', 'b', 'c']})
data2 = pd.DataFrame({'\\|=/bla@#$324%^,"&*()><...': ['a', 'b', 'c']})
tables = {'1': data1, '2': data2}
Expand All @@ -34,6 +33,7 @@ def test_visualize_graph_for_multi_table():
metadata.set_primary_key('1', '\\|=/bla@#$324%^,"&*()><...')
metadata.add_relationship(
'1', '2', '\\|=/bla@#$324%^,"&*()><...', '\\|=/bla@#$324%^,"&*()><...')
model = HMASynthesizer(metadata)

# Run
metadata.visualize()
Expand Down

0 comments on commit 8e8a6e6

Please sign in to comment.