Skip to content

Commit

Permalink
more EOG test fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
oxisto committed Sep 5, 2023
1 parent 1b41fc4 commit 53aaa64
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@ class CPPLambdaTest {

val lambda = lambdaVar.initializer as? LambdaExpression
assertNotNull(lambda)
assertTrue(lambda in lambdaVar.prevEOG)
assertTrue(lambda in lambdaVar.nextEOG)

val printFunctionCall = function.calls["print_function"]
assertNotNull(printFunctionCall)
assertTrue(printFunctionCall in lambda.prevEOG)
assertTrue(printFunctionCall in lambdaVar.prevEOG)

val lambdaCall = function.calls["this_is_a_lambda"]
assertEquals(1, lambdaCall?.invokes?.size)
Expand Down

0 comments on commit 53aaa64

Please sign in to comment.