Skip to content

Commit 7dcf7ec

Browse files
committed
fixed test
1 parent 3495c4a commit 7dcf7ec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/suite/services/notebook/notebookController.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,14 +114,14 @@ describe("Controller", () => {
114114
});
115115

116116
describe("sql cell", () => {
117-
it("should not execute", async () => {
117+
it("should execute", async () => {
118118
await instance.execute(
119119
[notebookTestUtils.createCell("sql")],
120120
notebookTestUtils.createNotebook(),
121121
createController(),
122122
);
123123
sinon.assert.calledOnceWithMatch(replaceOutputStub, sinon.match.any, {
124-
text: "Error: SQL is not supported on REPL.",
124+
text: "RESULT",
125125
mime: "text/plain",
126126
});
127127
});

0 commit comments

Comments
 (0)