From 07d5388d5eeddd705cabb7bce58781f1c5383b5d Mon Sep 17 00:00:00 2001 From: Thomas Robitaille Date: Mon, 23 Oct 2023 12:19:18 +0100 Subject: [PATCH] TMP --- glue_jupyter/bqplot/image/tests/test_visual.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/glue_jupyter/bqplot/image/tests/test_visual.py b/glue_jupyter/bqplot/image/tests/test_visual.py index ce84b2d2..71b1c9a0 100644 --- a/glue_jupyter/bqplot/image/tests/test_visual.py +++ b/glue_jupyter/bqplot/image/tests/test_visual.py @@ -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