Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSergey Prigogin2011-10-06 23:02:35 +0000
committerSergey Prigogin2011-10-06 23:02:35 +0000
commit22a089aca466b64b61a060332e02d8c9efbcb030 (patch)
treefa760d3f59d66d4b2c5322dcbd9be3146c065ceb
parent849c54b2c373030f5094a5ca88705a1cbdff7fc0 (diff)
downloadorg.eclipse.cdt-22a089aca466b64b61a060332e02d8c9efbcb030.tar.gz
org.eclipse.cdt-22a089aca466b64b61a060332e02d8c9efbcb030.tar.xz
org.eclipse.cdt-22a089aca466b64b61a060332e02d8c9efbcb030.zip
Fixed a bogus test failure.
-rw-r--r--core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/internal/index/tests/IndexIncludeTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/internal/index/tests/IndexIncludeTest.java b/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/internal/index/tests/IndexIncludeTest.java
index 5f38e641513..d48ce0825b2 100644
--- a/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/internal/index/tests/IndexIncludeTest.java
+++ b/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/internal/index/tests/IndexIncludeTest.java
@@ -608,7 +608,7 @@ public class IndexIncludeTest extends IndexTestBase {
ResourcesPlugin.getWorkspace().run(new IWorkspaceRunnable() {
public void run(IProgressMonitor monitor) throws CoreException {
h1.setContents(new ByteArrayInputStream(h1Contents.toString().getBytes()), false, false, npm());
- h1.setLocalTimeStamp(t2 + 1000);
+ h1.setLocalTimeStamp(t2 + 2000);
}
}, npm());
waitForIndexer();

Back to the top