Commit 8d30fffe authored by Jakob Moser's avatar Jakob Moser
Browse files

Fix broken API

parent 88961019
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -169,10 +169,10 @@ class ExerciseExecutionContext {
    }

    /**
     * Clear the terminal. Shorthand for prepareWith(null, true)
     * Clear the terminal. Shorthand for prepareWith(null, false)
     */
    async clear() {
        await this.prepareWith(null, true)
        await this.prepareWith(null, false)
    }

    /**