We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 958a9c4 commit 004e90dCopy full SHA for 004e90d
test/unit.jl
@@ -1,11 +1,11 @@
1
@testset "get_slurm_ntasks_int()" begin
2
c = withenv(SLURM_NTASKS => "12") do
3
- SlurmClusterManager.get_slurm_jobid_int()
+ SlurmClusterManager.get_slurm_ntasks_int()
4
end
5
@test c == 12
6
7
withenv("SLURM_NTASKS" => nothing) do
8
- @test_throws ErrorException SlurmClusterManager.get_slurm_jobid_int()
+ @test_throws ErrorException SlurmClusterManager.get_slurm_ntasks_int()
9
10
11
0 commit comments