Skip to content

Commit 09bdf30

Browse files
committed
prefix
1 parent 2aca113 commit 09bdf30

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

processing/src/test/java/org/apache/druid/segment/TestDataSource.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
*/
2525
public final class TestDataSource
2626
{
27-
public static final String PREFIX = "datasource";
2827
public static final String WIKI = "wiki";
2928
public static final String KOALA = "koala";
3029
}

services/src/test/java/org/apache/druid/testing/embedded/EmbeddedClusterApis.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -412,11 +412,11 @@ public SupervisorStatus getSupervisorStatus(String supervisorId)
412412
// STATIC UTILITY METHODS
413413

414414
/**
415-
* Creates a random datasource name prefixed with {@link TestDataSource#PREFIX}.
415+
* Creates a random datasource name prefixed with {@code datasource_}.
416416
*/
417417
public static String createTestDatasourceName()
418418
{
419-
return TestDataSource.PREFIX + "_" + IdUtils.getRandomId();
419+
return "datasource_" + IdUtils.getRandomId();
420420
}
421421

422422
/**

0 commit comments

Comments
 (0)