Skip to content

Commit 2d9abbf

Browse files
committed
fixes
1 parent f3e5188 commit 2d9abbf

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
@@ -227,7 +227,7 @@ const DiagramEditor: React.FunctionComponent<{
227227
);
228228
} catch (err) {
229229
log.error(
230-
mongoLogId(1_001_000_001),
230+
mongoLogId(1_001_000_361),
231231
'DiagramEditor',
232232
'Error applying layout:',
233233
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
@@ -128,8 +128,8 @@ describe('Data Modeling tab', function () {
128128

129129
const dataModelEditor = browser.$(Selectors.DataModelEditor);
130130

131-
browser.waitUntil(async () => {
132-
let nodes = await getDiagramNodes(browser);
131+
await browser.waitUntil(async () => {
132+
const nodes = await getDiagramNodes(browser);
133133
expect(nodes).to.have.lengthOf(2);
134134
expect(nodes).to.deep.equal([
135135
'test.testCollection1',
@@ -153,7 +153,7 @@ describe('Data Modeling tab', function () {
153153
await browser.waitForAnimations(dataModelEditor);
154154

155155
// Verify that the model is updated
156-
nodes = await getDiagramNodes(browser);
156+
let nodes = await getDiagramNodes(browser);
157157
expect(nodes).to.have.lengthOf(0);
158158

159159
// Undo the change

0 commit comments

Comments
 (0)