Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mark all packages with semver ranges, and update #2166

Merged
merged 2 commits into from
Apr 6, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion normandy/recipes/tests/api/v3/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def test_it_can_create_recipes_actions_without_implementation(self, api_client):
)
assert res.status_code == 201

recipe, = Recipe.objects.all()
(recipe,) = Recipe.objects.all()
assert recipe.latest_revision.action.implementation is None

def test_it_can_create_disabled_recipes(self, api_client):
Expand Down
2 changes: 1 addition & 1 deletion normandy/recipes/tests/test_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -708,7 +708,7 @@ def test_it_publishes_new_revisions_if_enabled(self, mocked_remotesettings):

assert mocked_remotesettings.return_value.publish.call_count == 2
second_call_args, _ = mocked_remotesettings.return_value.publish.call_args_list[1]
modified_recipe, = second_call_args
(modified_recipe,) = second_call_args
assert modified_recipe.latest_revision.name == "Modified"

def test_it_does_not_publish_when_approved_if_not_enabled(self, mocked_remotesettings):
Expand Down
Loading