diff options
author | Sven Gothel <[email protected]> | 2011-06-07 18:30:53 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-06-07 18:30:53 +0200 |
commit | cb572e9af91b58a54ca336b82e704fa7d29577cf (patch) | |
tree | 408388f859b61329766d2e16a0bdf605eead5014 /src/test | |
parent | 9ff2b3fccc95e5ff51b89f6a92048f12dc902647 (diff) |
unit test: use class global GLProfile
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/com/jogamp/opengl/test/junit/jogl/demos/gl2/gears/TestGearsAWT.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/com/jogamp/opengl/test/junit/jogl/demos/gl2/gears/TestGearsAWT.java b/src/test/com/jogamp/opengl/test/junit/jogl/demos/gl2/gears/TestGearsAWT.java index 8b050374a..d0f73898f 100644 --- a/src/test/com/jogamp/opengl/test/junit/jogl/demos/gl2/gears/TestGearsAWT.java +++ b/src/test/com/jogamp/opengl/test/junit/jogl/demos/gl2/gears/TestGearsAWT.java @@ -104,7 +104,7 @@ public class TestGearsAWT extends UITestCase { @Test public void test01() throws InterruptedException { - GLCapabilities caps = new GLCapabilities(GLProfile.getDefault()); + GLCapabilities caps = new GLCapabilities(glp); runTestGL(caps); } |