Skip to content

Commit

Permalink
chore: remove ipdb
Browse files Browse the repository at this point in the history
  • Loading branch information
vishwa2710 committed Jan 4, 2025
1 parent fe156a0 commit 40a7298
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions bindings/python/test/test_viewer.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,14 +189,10 @@ def test_add_label_success(

rendered_html: str = viewer.render()

import IPython

IPython.embed()

assert rendered_html.startswith('<meta charset="utf-8">')
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: 10.0}});'
'widget.entities.add({position: Cesium.Cartesian3.fromDegrees(63.43494882292201, 18.22447811510915, -6376045.535225509), label: {text: "Hello, World!", fillColor: Cesium.Color.RED, scale: 1.0}});'
in rendered_html
)
assert rendered_html.endswith("</script>")

0 comments on commit 40a7298

Please sign in to comment.