File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
processing/src/test/java/org/apache/druid/segment
services/src/test/java/org/apache/druid/testing/embedded Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 2424 */
2525public 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}
Original file line number Diff line number Diff 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 /**
You can’t perform that action at this time.
0 commit comments