Skip to content

Commit

Permalink
Fix param name
Browse files Browse the repository at this point in the history
  • Loading branch information
jackskennel committed Jun 1, 2023
1 parent d56af8d commit 4ecb96d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -38863,7 +38863,7 @@ exports.runAll = async (tests, cwd, testSuite = 'autograding') => {
var summaryTable = [[{ data: 'Test name', header: true },
{ data: 'Points', header: true },
{ data: 'Passed?', header: true }]];
const allOrNothing = core.getInput("allOrNothing", { required: false }) == 'true';
const allOrNothing = core.getInput("all_or_nothing", { required: false }) == 'true';
for (const test of tests) {
let scoreLog = {
test: test.name,
Expand Down
2 changes: 1 addition & 1 deletion src/runner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ export const runAll = async (tests: Array<Test>, cwd: string, testSuite = 'autog
{data: 'Points', header: true},
{data: 'Passed?', header: true}]]

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

for (const test of tests) {
let scoreLog = {
Expand Down

0 comments on commit 4ecb96d

Please sign in to comment.