diff --git a/glue_astronomy/translators/tests/test_regions.py b/glue_astronomy/translators/tests/test_regions.py index 386072c..4b5bc5f 100644 --- a/glue_astronomy/translators/tests/test_regions.py +++ b/glue_astronomy/translators/tests/test_regions.py @@ -129,7 +129,7 @@ def test_ellipse_roi(self, theta): def test_point_roi(self): - subset_state = self.setup_rois('PointROI', *[1, 3.5]) + subset_state = self.setup_rois('PointROI', *[2.64, 5.4]) self.dc.new_subset_group(subset_state=subset_state, label='point') @@ -137,8 +137,8 @@ def test_point_roi(self): assert isinstance(reg, PointPixelRegion) - assert_equal(reg.center.x, 1) - assert_equal(reg.center.y, 3.5) + assert_equal(reg.center.x, 2.64) + assert_equal(reg.center.y, 5.4) def test_xregion_roi(self):