diff --git a/README.md b/README.md
index e8530ce..a1dabf4 100644
--- a/README.md
+++ b/README.md
@@ -31,3 +31,5 @@ Reactylon is licensed under the MIT License, with the inclusion of other depende
- Babylon.js: Licensed under the Apache License, Version 2.0. For more details, visit the Babylon.js License.
- React & React Native: Licensed under the MIT License. For more details, visit the React License.
+
+Test Github workflow
\ No newline at end of file
diff --git a/packages/library/src/components/hosts/MeshHost.test.tsx b/packages/library/src/components/hosts/MeshHost.test.tsx
index c78de65..93ac77d 100644
--- a/packages/library/src/components/hosts/MeshHost.test.tsx
+++ b/packages/library/src/components/hosts/MeshHost.test.tsx
@@ -15,7 +15,7 @@ describe('Meshes tests', () => {
const { scene, rerender } = render();
const box = scene.getMeshById(boxName) as Mesh;
rerender();
- expect(box.position.equals(new Vector3(1, 1, 0))).toBeTruthy();
+ expect(box.position.equals(new Vector3(1, 0, 0))).toBeTruthy();
});
test('should dispose the box', async () => {