Skip to content

Commit

Permalink
chore: remove useless test
Browse files Browse the repository at this point in the history
  • Loading branch information
VsevolodX committed Aug 30, 2024
1 parent bdc1873 commit 92e8c90
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions tests/py/unit/test_tools_modify.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,13 @@
filter_by_rectangle_projection,
filter_by_sphere,
filter_by_triangle_projection,
passivate_surface,
remove_vacuum,
rotate_material,
translate_to_z_level,
)
from mat3ra.utils import assertion as assertion_utils

from .fixtures import GRAPHENE_NICKEL_INTERFACE, SI_CONVENTIONAL_CELL, SI_SLAB, SI_SLAB_PASSIVATED, SI_SLAB_VACUUM
from .fixtures import GRAPHENE_NICKEL_INTERFACE, SI_CONVENTIONAL_CELL, SI_SLAB, SI_SLAB_VACUUM

COMMON_PART = {
"units": "crystal",
Expand Down Expand Up @@ -175,13 +174,6 @@ def test_rotate_material():
assertion_utils.assert_deep_almost_equal(material.lattice, rotated_material.lattice)


def test_passivate_surface():
passivated_material = passivate_surface(
material=Material(SI_SLAB), passivant="H", default_bond_length=1.48, surface="both"
)
assertion_utils.assert_deep_almost_equal(SI_SLAB_PASSIVATED, passivated_material.to_json())


def test_displace_interface():
material = Material(GRAPHENE_NICKEL_INTERFACE)
expected_coordinates = [
Expand Down

0 comments on commit 92e8c90

Please sign in to comment.