Skip to content

Commit 88165bf

Browse files
committed
fixes
1 parent b8f8fec commit 88165bf

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/compass-data-modeling/src/components/diagram-editor.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ const DiagramEditor: React.FunctionComponent<{
237237
);
238238
} catch (err) {
239239
log.error(
240-
mongoLogId(1_001_000_001),
240+
mongoLogId(1_001_000_361),
241241
'DiagramEditor',
242242
'Error applying layout:',
243243
err

packages/compass-e2e-tests/tests/data-modeling-tab.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ describe('Data Modeling tab', function () {
9696
const dataModelEditor = browser.$(Selectors.DataModelEditor);
9797
await dataModelEditor.waitForDisplayed();
9898

99-
browser.waitUntil(async () => {
100-
let nodes = await getDiagramNodes(browser);
99+
await browser.waitUntil(async () => {
100+
const nodes = await getDiagramNodes(browser);
101101
expect(nodes).to.have.lengthOf(2);
102102
expect(nodes).to.deep.equal([
103103
'test.testCollection1',
@@ -121,7 +121,7 @@ describe('Data Modeling tab', function () {
121121
await browser.waitForAnimations(dataModelEditor);
122122

123123
// Verify that the model is updated
124-
nodes = await getDiagramNodes(browser);
124+
let nodes = await getDiagramNodes(browser);
125125
expect(nodes).to.have.lengthOf(0);
126126

127127
// Undo the change

0 commit comments

Comments
 (0)