From bb88b037c7664c4443b67e0afdd47742b6c4123d Mon Sep 17 00:00:00 2001 From: Matt McCormick Date: Sun, 22 May 2022 12:05:04 -0400 Subject: [PATCH] test(Mesh): Expected default name is `mesh` --- test/node/core/MeshTest.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/node/core/MeshTest.js b/test/node/core/MeshTest.js index 0f3cafc3a..e8cb9bb32 100644 --- a/test/node/core/MeshTest.js +++ b/test/node/core/MeshTest.js @@ -10,7 +10,7 @@ test('meshType should have the same meshType passed to the constructor', t => { test('name should have the default value of "Mesh"', t => { const mesh = new Mesh() - t.deepEqual(mesh.name, 'Mesh') + t.deepEqual(mesh.name, 'mesh') }) test('numberOfPoints should have a default value of 0', t => {