Skip to content

Commit

Permalink
Fix linking in test
Browse files Browse the repository at this point in the history
  • Loading branch information
astrofrog committed Dec 6, 2023
1 parent c3b3e65 commit d260d86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions glue/viewers/scatter/tests/test_viewer.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ def test_scatter_density_map():

data2 = app.add_data(a={"x": xx, "y": yy})[0]

app.data_collection.add_link(LinkSame(data1.id['x'], data1.id['x']))
app.data_collection.add_link(LinkSame(data2.id['x'], data2.id['x']))
app.data_collection.add_link(LinkSame(data1.id['x'], data2.id['x']))
app.data_collection.add_link(LinkSame(data1.id['y'], data2.id['y']))

viewer = app.new_data_viewer(SimpleScatterViewer)
viewer.add_data(data1)
Expand Down

0 comments on commit d260d86

Please sign in to comment.