Skip to content

Commit

Permalink
fix test dtype
Browse files Browse the repository at this point in the history
  • Loading branch information
a-r-j authored Oct 28, 2023
1 parent a5f8959 commit 62252b3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/protein/test_graphs.py
Original file line number Diff line number Diff line change
Expand Up @@ -426,6 +426,7 @@ def test_alt_loc_exclusion():
config.alt_locs = opt
g = construct_graph(config=config, pdb_code="2VVI")
assert np.array_equal(
g.nodes[node_id]["coords"], np.array(expected_coords, dtype=float)
g.nodes[node_id]["coords"],
np.array(expected_coords, dtype=np.float),
)
Expand Down

0 comments on commit 62252b3

Please sign in to comment.