Skip to content

Commit

Permalink
Fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgenherje committed Dec 16, 2024
1 parent 8169e93 commit 51fda1b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import { UserAvatar } from "./private-components/userAvatar";

import { LoadingOverlay } from "../LoadingOverlay";

const CASE_UUID_ENSEMBLE_NAME_SEPARATOR = "~&&~";
const CASE_UUID_ENSEMBLE_NAME_SEPARATOR = "~@@~";

// Ensemble element item for a delta ensemble
export type DeltaEnsembleElementItem = {
Expand Down
2 changes: 1 addition & 1 deletion frontend/tests/unit/DeltaEnsemble.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ describe("DeltaEnsemble", () => {
// Use display name of compare and reference ensemble if no custom name is provided
const DeltaEnsembleWithoutCustomName = new DeltaEnsemble(COMPARE_ENSEMBLE, REFERENCE_ENSEMBLE, "red");
expect(DeltaEnsembleWithoutCustomName.getDisplayName()).toBe(
"Custom Name First Ensemble - Custom Name Second Ensemble"
"(Custom Name First Ensemble) - (Custom Name Second Ensemble)"
);
});

Expand Down

0 comments on commit 51fda1b

Please sign in to comment.