Skip to content

Commit

Permalink
[ci] Fix broken patchinfo tests
Browse files Browse the repository at this point in the history
Empty params get skipped currently. Might be related to rails/rails#23438

This commit workarounds the problem.
  • Loading branch information
bgeuken committed Aug 25, 2016
1 parent 4caa1d2 commit d5c8741
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/api/spec/controllers/webui/patchinfo_controller_spec.rb
Expand Up @@ -20,7 +20,7 @@ def do_proper_post_save
description: 'long enough description is also ok' * 5,
issueid: [769484],
issuetracker: ['bgo'],
issuesum: [],
issuesum: [nil],
issueurl: ['https://bugzilla.gnome.org/show_bug.cgi?id=769484'],
category: 'recommended',
rating: 'low',
Expand Down Expand Up @@ -186,7 +186,7 @@ def do_proper_post_save
description: 'long enough description is also ok' * 5,
issueid: [769484],
issuetracker: ['NonExistingTracker'],
issuesum: [],
issuesum: [nil],
issueurl: ['https://bugzilla.gnome.org/show_bug.cgi?id=769484']
end

Expand All @@ -202,7 +202,7 @@ def do_proper_post_save
description: 'long enough description is also ok' * 5,
issueid: [769484],
issuetracker: ['bgo'],
issuesum: [],
issuesum: [nil],
issueurl: ['https://bugzilla.gnome.org/show_bug.cgi?id=769484']
end

Expand Down

0 comments on commit d5c8741

Please sign in to comment.