Skip to content

Commit dd965e4

Browse files
committed
test(Discovery): Ensure tokenization dict test uses unique collection name
1 parent 7060b9c commit dd965e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

discovery/src/test/java/com/ibm/watson/developer_cloud/discovery/v1/DiscoveryServiceIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1901,7 +1901,7 @@ public void tokenizationDictionaryOperationsAreSuccessful() throws InterruptedEx
19011901
// collections
19021902
CreateCollectionOptions createCollectionOptions = new CreateCollectionOptions.Builder()
19031903
.environmentId(environmentId)
1904-
.name("tokenization-dict-testing-collection")
1904+
.name("tokenization-dict-testing-collection " + UUID.randomUUID().toString())
19051905
.language(CreateCollectionOptions.Language.JA)
19061906
.build();
19071907
Collection tokenDictTestCollection = discovery.createCollection(createCollectionOptions).execute();

0 commit comments

Comments
 (0)