Dongjoon Hyun created ORC-891:
---------------------------------
Summary: Use assert methods without package name `Assert`
Key: ORC-891
URL: https://issues.apache.org/jira/browse/ORC-891
Project: ORC
Issue Type: Test
Components: Java
Affects Versions: 1.8.0
Reporter: Dongjoon Hyun
As a part of migration to JUnit5, this JIRA proposes the following in the test
cases.
{code}
-import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
@@ -194,12 +193,12 @@ public class TestFileDump {
if (actualLine != null) {
actualLine = actualLine.trim();
}
- Assert.assertEquals(expectedLine, actualLine);
+ assertEquals(expectedLine, actualLine);
{code}
--
This message was sent by Atlassian Jira
(v8.3.4#803005)