diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2019-05-08 03:19:15 +0200 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2019-05-27 10:49:51 +0200 |
commit | 0e33b32ab73f23150802db778bfe43ba6dafa32f (patch) | |
tree | e46285f5691b0e43a792f9094371c7991ac0cfe3 /org.eclipse.jgit.test | |
parent | f1577909e7f9c5cd886099ff774ffb83723cdbf0 (diff) | |
download | jgit-0e33b32ab73f23150802db778bfe43ba6dafa32f.tar.gz jgit-0e33b32ab73f23150802db778bfe43ba6dafa32f.zip |
Fix FileSnapshotTest.testNewFileNoWait() to match its javadoc
testNewFileNoWait() was identical to testNewFileWithWait() but claims it
doesn't wait at all. Hence remove the waits.
Change-Id: I49b8ca5cb49a43c55fe61870c18c42f32fb4b74d
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit.test')
-rw-r--r-- | org.eclipse.jgit.test/tst/org/eclipse/jgit/internal/storage/file/FileSnapshotTest.java | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/org.eclipse.jgit.test/tst/org/eclipse/jgit/internal/storage/file/FileSnapshotTest.java b/org.eclipse.jgit.test/tst/org/eclipse/jgit/internal/storage/file/FileSnapshotTest.java index 91273362f7..68cc273710 100644 --- a/org.eclipse.jgit.test/tst/org/eclipse/jgit/internal/storage/file/FileSnapshotTest.java +++ b/org.eclipse.jgit.test/tst/org/eclipse/jgit/internal/storage/file/FileSnapshotTest.java @@ -124,9 +124,7 @@ public class FileSnapshotTest { @Test public void testNewFileNoWait() throws Exception { File f1 = createFile("newfile"); - waitNextSec(f1); FileSnapshot save = FileSnapshot.save(f1); - Thread.sleep(1500); assertTrue(save.isModified(f1)); } |