File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ public function testIconPrefixed() {
54
54
*/
55
55
public function testIconWithCustomAttributes () {
56
56
$ result = $ this ->Icon ->render ('m:save ' , [], ['data-x ' => 'y ' ]);
57
- $ expected = '<span class="material-symbols-outlined " data-x="y" title="Save">save</span> ' ;
57
+ $ expected = '<span class="material-icons " data-x="y" title="Save">save</span> ' ;
58
58
$ this ->assertSame ($ expected , $ result );
59
59
}
60
60
@@ -63,7 +63,7 @@ public function testIconWithCustomAttributes() {
63
63
*/
64
64
public function testIconWithCustomClassAttributes () {
65
65
$ result = $ this ->Icon ->render ('m:save ' , [], ['class ' => 'my-extra ' ]);
66
- $ expected = '<span class="material-symbols-outlined my-extra" title="Save">save</span> ' ;
66
+ $ expected = '<span class="material-icons my-extra" title="Save">save</span> ' ;
67
67
$ this ->assertSame ($ expected , $ result );
68
68
}
69
69
@@ -84,7 +84,7 @@ public function testIconWithCustomFontIcon() {
84
84
$ this ->Icon = new IconHelper (new View (null ), $ config );
85
85
86
86
$ result = $ this ->Icon ->render ('edit ' );
87
- $ expected = '<span class="material-symbols-outlined " title="Save">save</span> ' ;
87
+ $ expected = '<span class="material-icons " title="Save">save</span> ' ;
88
88
$ this ->assertSame ($ expected , $ result );
89
89
}
90
90
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ public function setUp(): void {
26
26
*/
27
27
public function testRender (): void {
28
28
$ result = $ this ->icon ->render ('view ' );
29
- $ this ->assertSame ('<span class="material-symbols-outlined ">view</span> ' , $ result );
29
+ $ this ->assertSame ('<span class="material-icons ">view</span> ' , $ result );
30
30
}
31
31
32
32
}
You can’t perform that action at this time.
0 commit comments