Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion experiment/src/client/test/integration/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ export async function checkDomainName(server: IntegrationTestServer, domainType:
// spaces should be trimmed before validation
await verifyDomainCreateSuccess(server, domainType, ' startWithSpace', folderOptions, userOptions);

const domainName = selectRandomN(alphaNumeric, 2).join('') + selectRandomN(LEGAL_CHARSET, 5).join('');
const domainName = selectRandomN(alphaNumeric, 2).join('') + selectRandomN(LEGAL_CHARSET, 5).join('').replaceAll(' -', ' _-'); // name may not contain space followed by dash
const { domainId, domainURI } = await verifyDomainCreateSuccess(server, domainType, domainName, folderOptions, userOptions);

let dataTypeRowId = 0;
Expand Down