@@ -31,39 +31,39 @@ echo "\n\n";
3131<?php exit (0 ); ?>
3232--EXPECTF--
3333MongoDB\BSON\Javascript::__set_state(array(
34- 'code' => 'function foo(bar) { return bar; }',
35- 'scope' => NULL,
34+ %w 'code' => 'function foo(bar) { return bar; }',
35+ %w 'scope' => NULL,
3636))
3737
3838MongoDB\BSON\Javascript::__set_state(array(
39- 'code' => 'function foo(bar) { return bar; }',
40- 'scope' =>
39+ %w 'code' => 'function foo(bar) { return bar; }',
40+ %w 'scope' =>
4141 stdClass::__set_state(array(
4242 )),
4343))
4444
4545MongoDB\BSON\Javascript::__set_state(array(
46- 'code' => 'function foo() { return foo; }',
47- 'scope' =>
46+ %w 'code' => 'function foo() { return foo; }',
47+ %w 'scope' =>
4848 stdClass::__set_state(array(
49- 'foo' => 42,
49+ %w 'foo' => 42,
5050 )),
5151))
5252
5353MongoDB\BSON\Javascript::__set_state(array(
54- 'code' => 'function foo() { return id; }',
55- 'scope' =>
54+ %w 'code' => 'function foo() { return id; }',
55+ %w 'scope' =>
5656 stdClass::__set_state(array(
57- 'id' =>
57+ %w 'id' =>
5858 MongoDB\BSON\ObjectID::__set_state(array(
59- 'oid' => '53e2a1c40640fd72175d4603',
59+ %w 'oid' => '53e2a1c40640fd72175d4603',
6060 )),
6161 )),
6262))
6363
6464MongoDB\BSON\Javascript::__set_state(array(
65- 'code' => 'function foo(bar) { return bar; }',
66- 'scope' => NULL,
65+ %w 'code' => 'function foo(bar) { return bar; }',
66+ %w 'scope' => NULL,
6767))
6868
6969===DONE===
0 commit comments