Skip to content

Commit

Permalink
fix: cleanup after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
gromdimon committed Aug 10, 2023
1 parent c81fcf1 commit ea0a627
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion landingzones/tests/test_ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
from samplesheets.tests.test_io import SampleSheetIOMixin, SHEET_DIR
from samplesheets.tests.test_sheet_config import SheetConfigMixin

from landingzones.constants import ZONE_STATUS_CREATING
from landingzones.tests.test_models import LandingZoneMixin


Expand Down Expand Up @@ -353,7 +354,7 @@ def test_zone_locked_superuser(self):
zone = self.make_landing_zone(
'contrib_zone', self.project, self.user_contributor, self.assay
)
self.assertEqual(zone.status, 'CREATING')
self.assertEqual(zone.status, ZONE_STATUS_CREATING)
self.login_and_redirect(self.superuser, self.url)
self._wait_for_status_update()
zone_elem = self.selenium.find_elements(
Expand Down

0 comments on commit ea0a627

Please sign in to comment.