Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2013-09-04 14:41:45 +0000
committerDani Megert2013-09-04 14:41:45 +0000
commit4b346beb75f34f42085268734a0323f770dd3cfe (patch)
tree8ac7ac277018b1e2517340f783cc96bcb26b1dfc
parent4cae568ad7d589b9663534a1939fc0add9ce9d3e (diff)
downloadeclipse.platform.text-4b346beb75f34f42085268734a0323f770dd3cfe.tar.gz
eclipse.platform.text-4b346beb75f34f42085268734a0323f770dd3cfe.tar.xz
eclipse.platform.text-4b346beb75f34f42085268734a0323f770dd3cfe.zip
Replaced deprecated junit.framework.Assert
-rw-r--r--org.eclipse.core.filebuffers.tests/src/org/eclipse/core/filebuffers/tests/FileBufferCreation.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/org.eclipse.core.filebuffers.tests/src/org/eclipse/core/filebuffers/tests/FileBufferCreation.java b/org.eclipse.core.filebuffers.tests/src/org/eclipse/core/filebuffers/tests/FileBufferCreation.java
index 16d8a43b892..20f338caa5a 100644
--- a/org.eclipse.core.filebuffers.tests/src/org/eclipse/core/filebuffers/tests/FileBufferCreation.java
+++ b/org.eclipse.core.filebuffers.tests/src/org/eclipse/core/filebuffers/tests/FileBufferCreation.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2008 IBM Corporation and others.
+ * Copyright (c) 2000, 2013 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -12,9 +12,10 @@ package org.eclipse.core.filebuffers.tests;
import java.io.File;
-import junit.framework.Assert;
import junit.framework.TestCase;
+import org.junit.Assert;
+
import org.eclipse.core.filesystem.EFS;
import org.eclipse.core.filesystem.IFileStore;

Back to the top