Skip to content

Commit

Permalink
TMP
Browse files Browse the repository at this point in the history
  • Loading branch information
astrofrog committed Oct 23, 2023
1 parent 5b92f9a commit 07d5388
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions glue_jupyter/bqplot/image/tests/test_visual.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ def test_visual_incompatible_subset(
app = jglue()
data1 = app.add_data(image={"image": im})[0]
data2 = app.add_data(catalog={"x": x, "y": y})[0]
state1 = data1.pixel_component_ids[1] > 32
app.data_collection.new_subset_group('image[x] > 32', state1)
image = app.imshow(data=data1, show=False)
# state1 = data1.pixel_component_ids[1] > 32
# app.data_collection.new_subset_group('image[x] > 32', state1)
state2 = data2.id['x'] > 1
app.data_collection.new_subset_group('x > 1', state2)
image = app.imshow(data=data1, show=False)
figure = image.figure_widget
figure.layout = {"width": "400px", "height": "250px"}
return figure

0 comments on commit 07d5388

Please sign in to comment.