Skip to content

Commit c384731

Browse files
fix typo
1 parent 74946a4 commit c384731

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lpython/tests/test_llvm.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -641,7 +641,7 @@ TEST_CASE("PythonCompiler i32 expressions") {
641641
r = e.evaluate2("3 ** 3");
642642
CHECK(r.ok);
643643
CHECK(r.result.type == PythonCompiler::EvalResult::integer4);
644-
CHECK(r.result.i64 == 27);
644+
CHECK(r.result.i32 == 27);
645645

646646
r = e.evaluate2("4 // 2");
647647
CHECK(r.ok);

0 commit comments

Comments
 (0)