Skip to content
This repository has been archived by the owner on Jul 4, 2018. It is now read-only.

Commit

Permalink
fixing tests, Gemfile.lock
Browse files Browse the repository at this point in the history
  • Loading branch information
flaviogranero committed May 13, 2014
1 parent 894c515 commit b477cd8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
assisted_workflow (0.3.0)
assisted_workflow (0.3.1)
hashie (~> 2.0.5)
jiralicious (~> 0.4.0)
octokit (~> 2.0)
Expand Down
6 changes: 3 additions & 3 deletions spec/assisted_workflow/addons/jira_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,9 @@ def mock_transition(story_id, status_id)
response = Object.new
stub(response).parsed_response do
{"transitions" => [
{"id" => "1", "name" => "Backlog"},
{"id" => "2", "name" => "Started"},
{"id" => "3", "name" => "Finished"},
{"id" => "1", "name" => "Next", "to" => {"name" => "Backlog"}},
{"id" => "2", "name" => "Start", "to" => {"name" => "Started"}},
{"id" => "3", "name" => "Finish", "to" => {"name" => "Finished"}},
]}
end
mock(Jiralicious::Issue).get_transitions(url){ response }
Expand Down

0 comments on commit b477cd8

Please sign in to comment.