From 730803ea00a3e58d09d22a0b277d3fb3da5f41f7 Mon Sep 17 00:00:00 2001 From: Kazuhito Yokoi Date: Sun, 22 Dec 2024 20:55:33 +0900 Subject: [PATCH] Fix test case for local icon in library --- test/unit/@node-red/runtime/lib/library/index_spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/@node-red/runtime/lib/library/index_spec.js b/test/unit/@node-red/runtime/lib/library/index_spec.js index 2499124c7..cc6558a6d 100644 --- a/test/unit/@node-red/runtime/lib/library/index_spec.js +++ b/test/unit/@node-red/runtime/lib/library/index_spec.js @@ -84,7 +84,7 @@ describe("runtime/library", function() { libs[0].should.have.property('id', 'local'); libs[0].should.have.property('label','editor:library.types.local'); libs[0].should.have.property("user", false); - libs[0].should.have.property('icon', 'font-awesome/fa-hdd-o'); + libs[0].should.have.property('icon', 'fa fa-hdd-o'); libs[1].should.have.property('id', 'examples'); libs[1].should.have.property('label','editor:library.types.examples');