Fixing PluginLoaderTest
Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/9c7ccd5c Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/9c7ccd5c Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/9c7ccd5c Branch: refs/heads/master Commit: 9c7ccd5cc10b1d4a6f1817a6c37c99b8f19d15a1 Parents: 938217b Author: Colm O hEigeartaigh <[email protected]> Authored: Tue Jan 31 13:35:39 2017 +0000 Committer: Colm O hEigeartaigh <[email protected]> Committed: Tue Jan 31 13:35:39 2017 +0000 ---------------------------------------------------------------------- .../java/org/apache/cxf/tools/wsdlto/core/PluginLoaderTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/9c7ccd5c/tools/wsdlto/test/src/test/java/org/apache/cxf/tools/wsdlto/core/PluginLoaderTest.java ---------------------------------------------------------------------- diff --git a/tools/wsdlto/test/src/test/java/org/apache/cxf/tools/wsdlto/core/PluginLoaderTest.java b/tools/wsdlto/test/src/test/java/org/apache/cxf/tools/wsdlto/core/PluginLoaderTest.java index 748474f..c02d31b 100644 --- a/tools/wsdlto/test/src/test/java/org/apache/cxf/tools/wsdlto/core/PluginLoaderTest.java +++ b/tools/wsdlto/test/src/test/java/org/apache/cxf/tools/wsdlto/core/PluginLoaderTest.java @@ -34,7 +34,7 @@ public class PluginLoaderTest extends Assert { @Test public void testLoadPlugins() throws Exception { PluginLoader loader = PluginLoader.getInstance(); - assertEquals(4, loader.getPlugins().size()); + assertEquals(3, loader.getPlugins().size()); Plugin plugin = getPlugin(loader, 0); assertNotNull(plugin.getName()); @@ -59,7 +59,7 @@ public class PluginLoaderTest extends Assert { Map<String, DataBinding> databindings = loader.getDataBindings(); assertNotNull(databindings); - assertEquals(6, databindings.size()); + assertEquals(5, databindings.size()); DataBinding databinding = databindings.get("jaxb"); assertNotNull(databinding);
