Skip to content

Commit

Permalink
fix PackagesTestCase.test_get_active_not_stable
Browse files Browse the repository at this point in the history
  • Loading branch information
hgy59 committed Jan 8, 2024
1 parent 5bce172 commit 756a04d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spkrepo/tests/test_frontend.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def test_get_logged_user(self):
class PackagesTestCase(BaseTestCase):
# Assert beta is not shown on Packages page
def test_get_active_not_stable(self):
build = BuildFactory(version__report_url=None, active=True)
build = BuildFactory(active=True)
db.session.commit()
response = self.client.get(url_for("frontend.packages"))
self.assert200(response)
Expand Down

0 comments on commit 756a04d

Please sign in to comment.