Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update name of meshpy function #52

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/testing.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
import numpy as np
import pytest
from meshpy.rotation import Rotation, rotate_coordinates
from meshpy_testing.utils import compare_string_tolerance
from meshpy_testing.conftest import compare_strings_with_tolerance

# Define the testing paths.
testing_path = os.path.abspath(os.path.dirname(__file__))
Expand Down Expand Up @@ -107,7 +107,7 @@ def get_string(path):

# Check if the strings are equal, if not fail the test and show the
# differences in the strings.
files_are_equal = compare_string_tolerance(
files_are_equal = compare_strings_with_tolerance(
ref_string, dat_string, rtol=rtol, atol=atol
)
if not files_are_equal:
Expand Down