diff options
author | Sven Gothel <[email protected]> | 2023-08-05 03:16:06 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2023-08-05 03:16:06 +0200 |
commit | 0d3c2b630e06045013250547b3d0cb1bd9f99386 (patch) | |
tree | 0b15ff413169874cee4e85286778a3ed191303a7 /src/junit/com/jogamp/common/net/TestUri02Composing.java | |
parent | 177ee444d1b86e6412f636d5f4e8f0695d418246 (diff) |
Cleanup unit test class names (pt2): Try to start w/ 'Test', remove intermediate 'Test' for supporting, non-test classes
Diffstat (limited to 'src/junit/com/jogamp/common/net/TestUri02Composing.java')
-rw-r--r-- | src/junit/com/jogamp/common/net/TestUri02Composing.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/junit/com/jogamp/common/net/TestUri02Composing.java b/src/junit/com/jogamp/common/net/TestUri02Composing.java index 51a5cc6..f30f186 100644 --- a/src/junit/com/jogamp/common/net/TestUri02Composing.java +++ b/src/junit/com/jogamp/common/net/TestUri02Composing.java @@ -21,7 +21,7 @@ public class TestUri02Composing extends SingletonJunitCase { public static void assetRegistration() throws Exception { try { System.err.println("******* Asset URL Stream Handler Registration: PRE"); - Assert.assertTrue("GenericURLStreamHandlerFactory.register() failed", AssetURLContext.registerHandler(AssetURLConnectionRegisteredTest.class.getClassLoader())); + Assert.assertTrue("GenericURLStreamHandlerFactory.register() failed", AssetURLContext.registerHandler(TestAssetURLConnectionRegistered.class.getClassLoader())); Assert.assertNotNull(AssetURLContext.getRegisteredHandler()); System.err.println("******* Asset URL Stream Handler Registration: POST"); } catch (final Exception e) { |