Skip to content

Commit 27ad199

Browse files
committed
Fix imports in SourceHttpMessageConverterTests
Replaced static import of org.junit.Assert.* with implicit imports in order to avoid ambiguity between JUnit's static Assert methods and those in org.custommonkey.xmlunit.XMLAssert.
1 parent 337b5ff commit 27ad199

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spring-web/src/test/java/org/springframework/http/converter/xml/SourceHttpMessageConverterTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2013 the original author or authors.
2+
* Copyright 2002-2014 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -44,7 +44,7 @@
4444

4545
import static org.custommonkey.xmlunit.XMLAssert.*;
4646
import static org.junit.Assert.assertEquals;
47-
import static org.junit.Assert.*;
47+
import static org.junit.Assert.assertNotEquals;
4848
import static org.junit.Assert.assertTrue;
4949

5050
/**

0 commit comments

Comments
 (0)