Skip to content

Commit

Permalink
Use TestUtils classloader
Browse files Browse the repository at this point in the history
  • Loading branch information
jlowe committed Nov 23, 2021
1 parent 2d62e74 commit f2b0c59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/src/test/java/ai/rapids/cudf/TestUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ static Double[] getDoubles(final long seed, final int size, int specialValues) {
}

public static File getResourceAsFile(String resourceName) {
URL url = TableTest.class.getClassLoader().getResource(resourceName);
URL url = TestUtils.class.getClassLoader().getResource(resourceName);
if (url == null) {
throw new IllegalArgumentException("Unable to locate resource: " + resourceName);
}
Expand Down

0 comments on commit f2b0c59

Please sign in to comment.