Commit 43a70fa3d7e715b8ab57c423fd757b42e8be1c5d
Committed by
Alessandro Palmeira
1 parent
a5dbb20d
Exists in
master
and in
29 other branches
[Mezuro] Fixed repository unit test
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
plugins/mezuro/test/unit/kalibro/repository_test.rb
... | ... | @@ -20,7 +20,7 @@ class RepositoryTest < ActiveSupport::TestCase |
20 | 20 | |
21 | 21 | should 'get supported repository types' do |
22 | 22 | types = ['BAZAAR', 'GIT', 'SUBVERSION'] |
23 | - Kalibro::Repository.expects(:request).with(:supported_repository_types).returns({:repository_type => types}) | |
23 | + Kalibro::Repository.expects(:request).with(:supported_repository_types).returns({:supported_type => types}) | |
24 | 24 | assert_equal types, Kalibro::Repository.repository_types |
25 | 25 | end |
26 | 26 | ... | ... |