@@ -225,7 +225,7 @@ describe("Merge", function() {
225225 } ) ;
226226 } ) ;
227227
228- it . only ( "can merge using the convenience method" , function ( ) {
228+ it . only ( "can merge cleanly using the convenience method" , function ( ) {
229229 var initialFileName = "initialFile.txt" ;
230230 var ourFileName = "ourNewFile.txt" ;
231231 var theirFileName = "theirNewFile.txt" ;
@@ -303,11 +303,11 @@ describe("Merge", function() {
303303 "af60aa06b3537f75b427f6268a130c842c84a137" ) ;
304304
305305 return repository . createCommit ( ourBranch . name ( ) , ourSignature ,
306- ourSignature , "we made a commit" , oid , [ initialCommit ] ) ;
306+ ourSignature , "we made a commit" , oid , [ initialCommit ] ) ;
307307 } )
308308 . then ( function ( commitOid ) {
309309 assert . equal ( commitOid . toString ( ) ,
310- "7ce31c05427659986d50abfb90c8f7db88ef4fa1" ) ;
310+ "7ce31c05427659986d50abfb90c8f7db88ef4fa1" ) ;
311311
312312 return repository . getCommit ( commitOid ) . then ( function ( commit ) {
313313 ourCommit = commit ;
@@ -343,7 +343,7 @@ describe("Merge", function() {
343343 } ) ;
344344 } )
345345 . then ( function ( ) {
346- return repository . mergeBranches ( theirBranchName , ourBranchName ) ;
346+ return repository . mergeBranches ( ourBranchName , theirBranchName ) ;
347347 } )
348348 . then ( function ( commitId ) {
349349 assert . equal ( commitId . toString ( ) ,
0 commit comments