Index: test/cctest/test-compiler.cc |
diff --git a/test/cctest/test-compiler.cc b/test/cctest/test-compiler.cc |
index d5cae22a8cc4fe7d868f8d8ccfdfa7fc3da86fa5..4d6e005a8b8cf3fe1b35f39e79310614310952b5 100644 |
--- a/test/cctest/test-compiler.cc |
+++ b/test/cctest/test-compiler.cc |
@@ -227,14 +227,14 @@ TEST(C2JSFrames) { |
Handle<JSObject> global(isolate->context()->global_object()); |
Execution::Call(isolate, fun0, global, 0, NULL).Check(); |
- Handle<String> foo_string = isolate->factory()->InternalizeOneByteString( |
- STATIC_ASCII_VECTOR("foo")); |
+ Handle<String> foo_string = |
+ isolate->factory()->InternalizeOneByteString(STATIC_CHAR_VECTOR("foo")); |
Handle<Object> fun1 = Object::GetProperty( |
isolate->global_object(), foo_string).ToHandleChecked(); |
CHECK(fun1->IsJSFunction()); |
- Handle<Object> argv[] = { isolate->factory()->InternalizeOneByteString( |
- STATIC_ASCII_VECTOR("hello")) }; |
+ Handle<Object> argv[] = {isolate->factory()->InternalizeOneByteString( |
+ STATIC_CHAR_VECTOR("hello"))}; |
Execution::Call(isolate, |
Handle<JSFunction>::cast(fun1), |
global, |