icons deprecations fixes (#6920)

This commit is contained in:
Joffrey JAFFEUX
2019-01-22 12:02:02 +01:00
committed by GitHub
parent ea0e188c8f
commit 80d42b4ea2
78 changed files with 151 additions and 145 deletions

View File

@ -80,7 +80,7 @@ widgetTest("post deleted", {
},
test(assert) {
assert.ok(
this.$(".post-action .d-icon-trash-o").length === 1,
this.$(".post-action .d-icon-far-trash-alt").length === 1,
"it has the deleted icon"
);
assert.ok(

View File

@ -39,7 +39,7 @@ widgetTest("extra classes and glyphs", {
assert.ok(this.$("span.staff").length);
assert.ok(this.$("span.admin").length);
assert.ok(this.$("span.moderator").length);
assert.ok(this.$(".d-icon-shield").length);
assert.ok(this.$(".d-icon-shield-alt").length);
assert.ok(this.$("span.new-user").length);
assert.ok(this.$("span.fish").length);
}