This is an automated email from the ASF dual-hosted git repository.

fschumacher pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jmeter.git

commit 71c31977a43da33abba44168d532ea924fa0c6ac
Author: Elvys Soares <[email protected]>
AuthorDate: Sat Mar 20 17:56:15 2021 -0300

    Changing exception handling from try/catch to API recommendation
    
    Signed-off-by: Elvys Soares <[email protected]>
---
 src/core/src/test/java/org/apache/jorphan/TestXMLBuffer.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/core/src/test/java/org/apache/jorphan/TestXMLBuffer.java 
b/src/core/src/test/java/org/apache/jorphan/TestXMLBuffer.java
index 52bd40d..484fc06 100644
--- a/src/core/src/test/java/org/apache/jorphan/TestXMLBuffer.java
+++ b/src/core/src/test/java/org/apache/jorphan/TestXMLBuffer.java
@@ -17,8 +17,8 @@
 
 package org.apache.jorphan;
 
-import static org.junit.Assert.assertEquals;
-import static org.junit.Assert.assertThrows;
+import static org.junit.jupiter.api.Assertions.assertEquals;
+import static org.junit.jupiter.api.Assertions.assertThrows;
 
 import org.apache.jmeter.junit.JMeterTestCase;
 import org.apache.jorphan.util.XMLBuffer;

Reply via email to