File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -30,10 +30,10 @@ using Test
3030
3131 @test minimum (Temp) >= 0.0 # Minimum temperature
3232 @test maximum (Temp) <= 1350.0 # Maximum temperature
33- @test all (Temp .>= 0.0 ) # Ensure no negative temperatures
34- @test all (Temp .<= 1350.0 ) # Ensure no temperatures above max
33+ @test all (≥ ( 0 ), Temp) # Ensure no negative temperatures
34+ @test all (≤ ( 1350 ), Temp) # Ensure no temperatures above max
3535
3636 # Check if phases are correctly assigned in expected regions
37- @test Phases[ 1 , 1 , 1 ] == 2 # Example: Verify a point's phase
38- @test Phases[ end , end , end ] == 2 # Example: Verify another point's phase
37+ @test first ( Phases) == 2 # Example: Verify a point's phase
38+ @test last ( Phases) == 2 # Example: Verify another point's phase
3939end
You can’t perform that action at this time.
0 commit comments