From d0035b0bc63aa9aebc2196719d5cbd350a995516 Mon Sep 17 00:00:00 2001 From: Kirill Vainer Date: Fri, 8 Apr 2016 23:15:49 -0400 Subject: [PATCH] test: fix syntax error --- .../src/test/java/com/jme3/material/plugins/J3MLoaderTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jme3-core/src/test/java/com/jme3/material/plugins/J3MLoaderTest.java b/jme3-core/src/test/java/com/jme3/material/plugins/J3MLoaderTest.java index f45eb9bdf..b50104092 100644 --- a/jme3-core/src/test/java/com/jme3/material/plugins/J3MLoaderTest.java +++ b/jme3-core/src/test/java/com/jme3/material/plugins/J3MLoaderTest.java @@ -107,7 +107,7 @@ public class J3MLoaderTest { } private TextureKey setupMockForTexture(final String paramName, final String path, final boolean flipY, final Texture texture) { - when(materialDef.getMaterialParam(paramName)).thenReturn(new MatParamTexture(VarType.Texture2D, paramName, texture, 0, null)); + when(materialDef.getMaterialParam(paramName)).thenReturn(new MatParamTexture(VarType.Texture2D, paramName, texture, null)); final TextureKey textureKey = new TextureKey(path, flipY); textureKey.setGenerateMips(true);