Skip to content

Commit

Permalink
upper case language to match server
Browse files Browse the repository at this point in the history
  • Loading branch information
David Motsonashvili committed Jun 27, 2024
1 parent cdb3879 commit bebc348
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ internal class UnarySnapshotTests {
val codeExecutionResult = content.parts[1]

executableCodePart.shouldBe(
ExecutableCodePart(ExecutableCode("python", "print(\"Hello World\")"))
ExecutableCodePart(ExecutableCode("PYTHON", "print(\"Hello World\")"))
)
codeExecutionResult.shouldBe(
CodeExecutionResultPart(CodeExecutionResult(Outcome.OUTCOME_OK, "Hello World"))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"parts": [
{
"executableCode": {
"language": "python",
"language": "PYTHON",
"code": "print(\"Hello World\")"
}
},
Expand Down

0 comments on commit bebc348

Please sign in to comment.