Commit 43a70fa3d7e715b8ab57c423fd757b42e8be1c5d

Authored by Alessandro Palmeira + Diego Araújo
Committed by Alessandro Palmeira
1 parent a5dbb20d

[Mezuro] Fixed repository unit test

plugins/mezuro/test/unit/kalibro/repository_test.rb
@@ -20,7 +20,7 @@ class RepositoryTest < ActiveSupport::TestCase @@ -20,7 +20,7 @@ class RepositoryTest < ActiveSupport::TestCase
20 20
21 should 'get supported repository types' do 21 should 'get supported repository types' do
22 types = ['BAZAAR', 'GIT', 'SUBVERSION'] 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 assert_equal types, Kalibro::Repository.repository_types 24 assert_equal types, Kalibro::Repository.repository_types
25 end 25 end
26 26