Skip to content

Commit

Permalink
fix(devins-lang): fix output equality assertion
Browse files Browse the repository at this point in the history
The test for DevInCompiler now asserts against the 'output' field to ensure correct equality comparison.
  • Loading branch information
phodal committed Mar 16, 2024
1 parent 46f04c4 commit ff4269d
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ class DevInCompilerTest : LightJavaCodeInsightFixtureTestCase() {
val file = myFixture.configureByText("test.devin", code)

val compile = DevInsCompiler(project, file as DevInFile, myFixture.editor).compile()
assertEquals("Normal String /", compile)
assertEquals("Normal String /", compile.output)
}
}


0 comments on commit ff4269d

Please sign in to comment.