[
https://issues.apache.org/jira/browse/ORC-891?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Dongjoon Hyun updated ORC-891:
------------------------------
Fix Version/s: 1.7.0
> 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.7.0, 1.8.0
> Reporter: Dongjoon Hyun
> Assignee: Dongjoon Hyun
> Priority: Minor
> Fix For: 1.7.0, 1.8.0
>
>
> 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)