Index: test/cctest/interpreter/test-bytecode-generator.cc |
diff --git a/test/cctest/interpreter/test-bytecode-generator.cc b/test/cctest/interpreter/test-bytecode-generator.cc |
index c71e3ef034e1ee62dd6e5f0e474088e5af68f5c7..4faa2cce48d7032eae802e4939b5c6d0d37ca4e4 100644 |
--- a/test/cctest/interpreter/test-bytecode-generator.cc |
+++ b/test/cctest/interpreter/test-bytecode-generator.cc |
@@ -1250,7 +1250,7 @@ TEST(TopLevelObjectLiterals) { |
TEST(TryCatch) { |
InitializedIgnitionHandleScope scope; |
BytecodeExpectationsPrinter printer(CcTest::isolate(), |
- ConstantPoolType::kString); |
+ ConstantPoolType::kMixed); |
const char* snippets[] = { |
"try { return 1; } catch(e) { return 2; }\n", |
@@ -1267,7 +1267,7 @@ TEST(TryCatch) { |
TEST(TryFinally) { |
InitializedIgnitionHandleScope scope; |
BytecodeExpectationsPrinter printer(CcTest::isolate(), |
- ConstantPoolType::kString); |
+ ConstantPoolType::kMixed); |
const char* snippets[] = { |
"var a = 1;\n" |
"try { a = 2; } finally { a = 3; }\n", |