Skip to content

Commit

Permalink
Merge pull request prograils#15 from Bonias/fix-assertion
Browse files Browse the repository at this point in the history
Fix assertion
  • Loading branch information
mlitwiniuk committed Oct 16, 2013
2 parents 97084d3 + d099f5a commit d855d06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/functional/lit/sources_controller_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class SourcesControllerTest < ActionController::TestCase
put :update, :id => @source, :source => { :identifier=>"test2" }
assert_redirected_to source_path(assigns(:source))
@source.reload
assert "test2", @source.identifier
assert_equal "test2", @source.identifier
end

test "should destroy source" do
Expand Down

0 comments on commit d855d06

Please sign in to comment.