MPO: fix unit test

This commit is contained in:
Kirill Vainer 2016-04-02 14:31:23 -04:00
parent 60d9d1b4d8
commit 4fcd575c47
2 changed files with 2 additions and 2 deletions
jme3-core/src
main/resources/Common/MatDefs/Light
test/java/com/jme3/material

@ -114,7 +114,7 @@ MaterialDef Phong Lighting {
//For instancing
Boolean UseInstancing
Boolean BackfaceShadows: false
Boolean BackfaceShadows : false
}
Technique {

@ -63,7 +63,7 @@ import java.util.Map;
public class MaterialMatParamOverrideTest {
private static final HashSet<String> IGNORED_UNIFORMS = new HashSet<String>(
Arrays.asList(new String[]{"m_ParallaxHeight", "m_Shininess"}));
Arrays.asList(new String[]{"m_ParallaxHeight", "m_Shininess", "m_BackfaceShadows"}));
@Test
public void testBoolMpoOnly() {