File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
RubberduckTests/SourceControl Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -342,7 +342,7 @@ public void Undo_UndoesChanges()
342
342
Provider = _provider . Object
343
343
} ;
344
344
345
- var localLocation = "C:\\ users\\ desktop\\ git\ \ " ;
345
+ var localLocation = @ "C:\users\desktop\git\";
346
346
347
347
_provider . Setup ( git => git . Status ( ) ) . Returns ( fileStatusEntries ) ;
348
348
_provider . SetupGet ( git => git . CurrentRepository ) . Returns ( new Repository { LocalLocation = localLocation } ) ;
@@ -351,7 +351,7 @@ public void Undo_UndoesChanges()
351
351
vm . UndoChangesToolbarButtonCommand . Execute ( fileStatusEntries [ 0 ] ) ;
352
352
353
353
//Assert
354
- _provider . Verify ( git => git . Undo ( localLocation + fileStatusEntries [ 0 ] . FilePath ) ) ;
354
+ _provider . Verify ( git => git . Undo ( @"C:\users\desktop\git\module.bas" ) ) ;
355
355
}
356
356
357
357
[ TestCategory ( "SourceControl" ) ]
You can’t perform that action at this time.
0 commit comments