diff --git a/test/tests/JSON.js b/test/tests/JSON.js
index b63cabbd..7c6d85a6 100644
--- a/test/tests/JSON.js
+++ b/test/tests/JSON.js
@@ -13,7 +13,8 @@
 module('JSON');
 
 function testExportImportJson(project) {
-	var json = project.exportJson();
+	// Use higher precision than in comparissons, for bounds
+	var json = project.exportJson({ precision: 8 });
 	var project2 = new Project();
 	project2.activeLayer.remove();
 	project2.importJson(json);