diff options
| author | Jens Baumgart | 2010-09-06 13:26:54 +0000 |
|---|---|---|
| committer | Jens Baumgart | 2010-09-06 13:26:54 +0000 |
| commit | c9d8a1705573b57ec7ef5384977604d1658063e8 (patch) | |
| tree | 414766f2f5f5a4ea19ef8f06e3da2538ddb30c13 | |
| parent | aa7b1ea7ddab6f32d2d6ca0c5d7f5b487ebd4306 (diff) | |
| download | egit-c9d8a1705573b57ec7ef5384977604d1658063e8.tar.gz egit-c9d8a1705573b57ec7ef5384977604d1658063e8.tar.xz egit-c9d8a1705573b57ec7ef5384977604d1658063e8.zip | |
Fix AddOperationTest
Fixed small bug in AddOperationTest.
Change-Id: Ib15b43cf9341f669911fcf65671e139373eb13ee
Signed-off-by: Jens Baumgart <jens.baumgart@sap.com>
| -rw-r--r-- | org.eclipse.egit.core.test/src/org/eclipse/egit/core/test/op/AddOperationTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.egit.core.test/src/org/eclipse/egit/core/test/op/AddOperationTest.java b/org.eclipse.egit.core.test/src/org/eclipse/egit/core/test/op/AddOperationTest.java index 467120c715..0deafeb9a6 100644 --- a/org.eclipse.egit.core.test/src/org/eclipse/egit/core/test/op/AddOperationTest.java +++ b/org.eclipse.egit.core.test/src/org/eclipse/egit/core/test/op/AddOperationTest.java @@ -160,7 +160,7 @@ public class AddOperationTest extends GitTestCase { assertEquals(file1.getLocalTimeStamp() / 10, testRepository.lastModifiedInIndex(file1.getLocation().toPortableString()) / 10); assertEquals(file2.getLocalTimeStamp() / 10, - testRepository.lastModifiedInIndex(file1.getLocation().toPortableString()) / 10); + testRepository.lastModifiedInIndex(file2.getLocation().toPortableString()) / 10); } @Test |
