spec/unit/git/repository_spec.rb in r10k-1.2.0rc2 vs spec/unit/git/repository_spec.rb in r10k-1.2.0

- old
+ new

@@ -13,12 +13,12 @@ end it "generates a hash of remote names and remote URLs" do expect(subject).to receive(:git).with(%w[remote -v], anything).and_return(double(:stdout => output)) - expect(subject.remotes).to eq( + expect(subject.remotes).to eq({ 'cache' => '/home/user/.r10k/git/git@github.com-org-org-modules', 'origin' => 'git@github.com:org/org-modules', - ) + }) end end end