Skip to content

Commit 3d0b958

Browse files
committed
Fix buffer
1 parent 7f97b49 commit 3d0b958

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

workspace/lc-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export const getSolution = () => read("./solution.lc");
1414
export const getPreloaded = () => read("./preloaded.lc");
1515

1616
/** Return the contents of the preloaded file and the solution file combined */
17-
export const getSolutionWithPreloaded = () => getPreloaded() + "\n" + getSolution();
17+
export const getSolutionWithPreloaded = () => getPreloaded() + "\n_ = ()\n" + getSolution();
1818

1919

2020
/** Custom assertions */

0 commit comments

Comments
 (0)