1010
1111
1212def test_register_mesh (server , dataset_factory ):
13- dataset_factory (id = "11223344 " , viewable_file_name = "polyhedron_attribute.vtu" )
13+ dataset_factory (id = "123456789 " , viewable_file_name = "polyhedron_attribute.vtu" )
1414
1515 server .call (
1616 VtkMeshView .mesh_prefix + VtkMeshView .mesh_schemas_dict ["register" ]["rpc" ],
17- [{"id" : "11223344 " }],
17+ [{"id" : "123456789 " }],
1818 )
1919 assert server .compare_image (3 , "mesh/polyhedra/register.jpeg" ) == True
2020
@@ -25,7 +25,7 @@ def test_polyhedra_color(server, dataset_factory):
2525 server .call (
2626 VtkMeshPolyhedraView .mesh_polyhedra_prefix
2727 + VtkMeshPolyhedraView .mesh_polyhedra_schemas_dict ["color" ]["rpc" ],
28- [{"id" : "11223344 " , "color" : {"r" : 255 , "g" : 0 , "b" : 0 }}],
28+ [{"id" : "123456789 " , "color" : {"r" : 255 , "g" : 0 , "b" : 0 }}],
2929 )
3030 assert server .compare_image (3 , "mesh/polyhedra/color.jpeg" ) == True
3131
@@ -36,7 +36,7 @@ def test_polyhedra_visibility(server, dataset_factory):
3636 server .call (
3737 VtkMeshPolyhedraView .mesh_polyhedra_prefix
3838 + VtkMeshPolyhedraView .mesh_polyhedra_schemas_dict ["visibility" ]["rpc" ],
39- [{"id" : "11223344 " , "visibility" : False }],
39+ [{"id" : "123456789 " , "visibility" : False }],
4040 )
4141 assert server .compare_image (3 , "mesh/polyhedra/visibility.jpeg" ) == True
4242
@@ -47,7 +47,7 @@ def test_vertex_attribute(server, dataset_factory):
4747 server .call (
4848 VtkMeshPolyhedraView .mesh_polyhedra_prefix
4949 + VtkMeshPolyhedraView .mesh_polyhedra_schemas_dict ["vertex_attribute" ]["rpc" ],
50- [{"id" : "11223344 " , "name" : "toto_on_vertices" }],
50+ [{"id" : "123456789 " , "name" : "toto_on_vertices" }],
5151 )
5252 assert server .compare_image (3 , "mesh/polyhedra/vertex_attribute.jpeg" ) == True
5353
@@ -60,6 +60,6 @@ def test_polyhedron_attribute(server, dataset_factory):
6060 + VtkMeshPolyhedraView .mesh_polyhedra_schemas_dict ["polyhedron_attribute" ][
6161 "rpc"
6262 ],
63- [{"id" : "11223344 " , "name" : "toto_on_polyhedra" }],
63+ [{"id" : "123456789 " , "name" : "toto_on_polyhedra" }],
6464 )
6565 assert server .compare_image (3 , "mesh/polyhedra/polyhedron_attribute.jpeg" ) == True
0 commit comments