Skip to content

Commit

Permalink
Fix function name in test
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonOresten committed Apr 24, 2024
1 parent 296925d commit 26d93e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ ss_composition(ss::Vector{Int}) = [count(==(code), ss) for code in 1:3]

end

@testset "sheet arrangement" begin
@testset "sheet directions" begin
hbond_map = ASS.get_hbond_map(ASS.ncaco_coords.(ASS.readpdb("data/1ASS.pdb"))[1])
p, ap = sheet_arrangement(hbond_map)
p, ap = sheet_directions(hbond_map)
@test p isa Vector{Int64}
@test Set(unique(p)) == Set([0, 1, 2])
@test Set(unique(ap)) == Set([0, 1, 2])
Expand Down

0 comments on commit 26d93e9

Please sign in to comment.