Skip to content

Commit 785515e

Browse files
committed
Fix failing test
1 parent 53506f0 commit 785515e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/interop/lionweb.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ describe('Lionweb integration', function() {
7474
expect(root.node).to.be.instanceof(LionwebNode);
7575
let dir = root.node as LionwebNode & any;
7676
expect(dir.nodeDefinition.name).to.equal("Directory");
77-
expect(dir.getAttribute("name")).to.equal("resources.zip");
77+
expect(dir.getAttributeValue("name")).to.equal("resources.zip");
7878
expect(dir.files.length).to.equal(1);
7979
expect(dir.files[0]).to.be.instanceof(LionwebNode);
8080
dir = dir.files[0] as LionwebNode & any;

0 commit comments

Comments
 (0)