Skip to content

Commit 98969e7

Browse files
committed
fixup! fix test
1 parent b22de21 commit 98969e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/test/API/lang/cpp/decl-from-submodule/TestDeclFromSubmodule.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ def test_expr(self):
1717
self.build()
1818
lldbutil.run_to_source_breakpoint(self, "return 0", lldb.SBFileSpec("main.cpp"))
1919

20-
self.expect_expr("func(1, 2)", result_type=int, result_value=3)
21-
self.expect_expr("func(1)", result_type=int, result_value=1)
20+
self.expect_expr("func(1, 2)", result_type="int", result_value="3")
21+
self.expect_expr("func(1)", result_type="int", result_value="1")

0 commit comments

Comments
 (0)