Skip to content

Commit 9b43b01

Browse files
committed
fix mv options check
1 parent a730a43 commit 9b43b01

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/jdk/jb/SharedTextures/SharedTexturesTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ public static void main(String[] args) throws IOException, InterruptedException
5050

5151
SharedTextures sharedTextures = new SharedTexturesService();
5252
int textureType = sharedTextures.getTextureType(gc);
53-
if ("True".equals(System.getProperty("sun.java2d.opengl"))) {
53+
if ("true".equals(System.getProperty("sun.java2d.opengl"))) {
5454
Asserts.assertEquals(textureType, SharedTextures.OPENGL_TEXTURE_TYPE, "Expected OpenGL texture type");
55-
} else if ("True".equals(System.getProperty("sun.java2d.metal"))) {
55+
} else if ("true".equals(System.getProperty("sun.java2d.metal"))) {
5656
Asserts.assertEquals(textureType, SharedTextures.METAL_TEXTURE_TYPE, "Expected Metal texture type");
5757
} else {
5858
throw new RuntimeException("The rendering pipeline has to be specified explicitly");

0 commit comments

Comments
 (0)