Skip to content

Commit

Permalink
fix: incorrect input
Browse files Browse the repository at this point in the history
  • Loading branch information
elaineshijie committed Nov 13, 2024
1 parent e8d3807 commit 7636840
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run-service/controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ async function runTestcase(testcase, code) {

let outputFinal = responseData.stdout ? responseData.stdout : "";
let testCaseDetailsFinal = {
input: responseData.input || "No input description",
input: testcase.input || "No input description",
expectedOutput: testcase.expectedOutput || "No expected output",
testCaseId: testcase._id,
};
Expand Down

0 comments on commit 7636840

Please sign in to comment.