Skip to content

Commit

Permalink
i dont understand
Browse files Browse the repository at this point in the history
  • Loading branch information
ehigham committed Nov 13, 2023
1 parent ccbd7f4 commit 0b68065
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hail/src/test/scala/is/hail/expr/ir/ForwardLetsSuite.scala
Original file line number Diff line number Diff line change
Expand Up @@ -118,12 +118,12 @@ class ForwardLetsSuite extends HailSuite {

@Test def testLetNoMention(): Unit = {
val ir = Let("x", I32(1), I32(2))
assert(ForwardLets(ctx)(ir) == I32(2))
assert(ForwardLets[IR](ctx)(ir) == I32(2))
}

@Test def testLetRefRewrite(): Unit = {
val ir = Let("x", I32(1), Ref("x", TInt32))
assert(ForwardLets(ctx)(ir) == I32(1))
assert(ForwardLets[IR](ctx)(ir) == I32(1))
}

@Test def testAggregators(): Unit = {
Expand Down

0 comments on commit 0b68065

Please sign in to comment.