Skip to content

Commit 4ecb96d

Browse files
committed
Fix param name
1 parent d56af8d commit 4ecb96d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38863,7 +38863,7 @@ exports.runAll = async (tests, cwd, testSuite = 'autograding') => {
3886338863
var summaryTable = [[{ data: 'Test name', header: true },
3886438864
{ data: 'Points', header: true },
3886538865
{ data: 'Passed?', header: true }]];
38866-
const allOrNothing = core.getInput("allOrNothing", { required: false }) == 'true';
38866+
const allOrNothing = core.getInput("all_or_nothing", { required: false }) == 'true';
3886738867
for (const test of tests) {
3886838868
let scoreLog = {
3886938869
test: test.name,

src/runner.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ export const runAll = async (tests: Array<Test>, cwd: string, testSuite = 'autog
217217
{data: 'Points', header: true},
218218
{data: 'Passed?', header: true}]]
219219

220-
const allOrNothing = core.getInput("allOrNothing", {required: false}) == 'true'
220+
const allOrNothing = core.getInput("all_or_nothing", {required: false}) == 'true'
221221

222222
for (const test of tests) {
223223
let scoreLog = {

0 commit comments

Comments
 (0)