@@ -25,7 +25,7 @@ public function testString()
25
25
{
26
26
$ output = $ this ->dump ('string ' );
27
27
28
- $ expected = "string</span> \"<span style= \"color: #A0A0A0; font-family: Menlo \"> // app/routes/console.php:18</span> \n</pre> " ;
28
+ $ expected = "string</span> \"<span style= \"color: #A0A0A0; \"> // app/routes/console.php:18</span> \n</pre> " ;
29
29
30
30
$ this ->assertStringContainsString ($ expected , $ output );
31
31
}
@@ -34,7 +34,7 @@ public function testInteger()
34
34
{
35
35
$ output = $ this ->dump (1 );
36
36
37
- $ expected = "1</span><span style= \"color: #A0A0A0; font-family: Menlo \"> // app/routes/console.php:18</span> \n</pre> " ;
37
+ $ expected = "1</span><span style= \"color: #A0A0A0; \"> // app/routes/console.php:18</span> \n</pre> " ;
38
38
39
39
$ this ->assertStringContainsString ($ expected , $ output );
40
40
}
@@ -43,7 +43,7 @@ public function testFloat()
43
43
{
44
44
$ output = $ this ->dump (1.1 );
45
45
46
- $ expected = "1.1</span><span style= \"color: #A0A0A0; font-family: Menlo \"> // app/routes/console.php:18</span> \n</pre> " ;
46
+ $ expected = "1.1</span><span style= \"color: #A0A0A0; \"> // app/routes/console.php:18</span> \n</pre> " ;
47
47
48
48
$ this ->assertStringContainsString ($ expected , $ output );
49
49
}
@@ -52,7 +52,7 @@ public function testArray()
52
52
{
53
53
$ output = $ this ->dump (['string ' , 1 , 1.1 , ['string ' , 1 , 1.1 ]]);
54
54
55
- $ expected = '<samp data-depth=1 class=sf-dump-expanded><span style="color: #A0A0A0; font-family: Menlo "> // app/routes/console.php:18</span> ' ;
55
+ $ expected = '<samp data-depth=1 class=sf-dump-expanded><span style="color: #A0A0A0;"> // app/routes/console.php:18</span> ' ;
56
56
57
57
$ this ->assertStringContainsString ($ expected , $ output );
58
58
}
@@ -61,7 +61,7 @@ public function testBoolean()
61
61
{
62
62
$ output = $ this ->dump (true );
63
63
64
- $ expected = "true</span><span style= \"color: #A0A0A0; font-family: Menlo \"> // app/routes/console.php:18</span> \n</pre> " ;
64
+ $ expected = "true</span><span style= \"color: #A0A0A0; \"> // app/routes/console.php:18</span> \n</pre> " ;
65
65
66
66
$ this ->assertStringContainsString ($ expected , $ output );
67
67
}
@@ -73,7 +73,7 @@ public function testObject()
73
73
74
74
$ output = $ this ->dump ($ user );
75
75
76
- $ expected = '<samp data-depth=1 class=sf-dump-expanded><span style="color: #A0A0A0; font-family: Menlo "> // app/routes/console.php:18</span> ' ;
76
+ $ expected = '<samp data-depth=1 class=sf-dump-expanded><span style="color: #A0A0A0;"> // app/routes/console.php:18</span> ' ;
77
77
78
78
$ this ->assertStringContainsString ($ expected , $ output );
79
79
}
@@ -82,7 +82,7 @@ public function testNull()
82
82
{
83
83
$ output = $ this ->dump (null );
84
84
85
- $ expected = "null</span><span style= \"color: #A0A0A0; font-family: Menlo \"> // app/routes/console.php:18</span> \n</pre> " ;
85
+ $ expected = "null</span><span style= \"color: #A0A0A0; \"> // app/routes/console.php:18</span> \n</pre> " ;
86
86
87
87
$ this ->assertStringContainsString ($ expected , $ output );
88
88
}
0 commit comments