From 22c051b639f1b55204cadf218d2cdaa3892e38a1 Mon Sep 17 00:00:00 2001 From: vishwa shah Date: Sat, 4 Jan 2025 14:41:02 +0000 Subject: [PATCH] chore: fix tests --- bindings/python/test/test_viewer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/python/test/test_viewer.py b/bindings/python/test/test_viewer.py index b2c029bac..79002734a 100644 --- a/bindings/python/test/test_viewer.py +++ b/bindings/python/test/test_viewer.py @@ -192,7 +192,7 @@ def test_add_label_success( assert rendered_html.startswith('') assert "var widget = new Cesium.Viewer" in rendered_html assert ( - 'widget.entities.add({position: Cesium.Cartesian3.fromDegrees(63.43494882292201, 18.22447811510915, -6376045.535225509), label: {text: "Hello, World!", fillColor: Cesium.Color.RED, scale: 1.0}});' + 'widget.entities.add({position: Cesium.Cartesian3.fromDegrees(0.0, 0.0, 292863.0000000001), label: {text: "Hello, World!", fillColor: Cesium.Color.RED, scale: 1.0}});' in rendered_html ) assert rendered_html.endswith("")