@@ -337,27 +337,27 @@ end
337
337
@test_throws ArgumentError (" NaN values are not allowed in breaks" ) cut ([1 , 2 ], [1 , NaN ])
338
338
339
339
x = cut ([1 , Inf ], [1 ], extend= true )
340
- @test x ≊ [" [1.0, Inf]" , " [1.0, Inf]" ]
340
+ @test x ≅ [" [1.0, Inf]" , " [1.0, Inf]" ]
341
341
@test levels (x) == [" [1.0, Inf]" ]
342
342
343
343
x = cut ([1 , - Inf ], [1 ], extend= true )
344
- @test x ≊ [" [-Inf, 1.0]" , " [-Inf, 1.0]" ]
344
+ @test x ≅ [" [-Inf, 1.0]" , " [-Inf, 1.0]" ]
345
345
@test levels (x) == [" [-Inf, 1.0]" ]
346
346
347
347
x = cut ([1 : 5 ; Inf ], [1 , 2 , Inf ])
348
- @test x ≊ [" [1.0, 2.0)" ; fill (" [2.0, Inf]" , 5 )]
348
+ @test x ≅ [" [1.0, 2.0)" ; fill (" [2.0, Inf]" , 5 )]
349
349
@test levels (x) == [" [1.0, 2.0)" , " [2.0, Inf]" ]
350
350
351
351
x = cut ([1 : 5 ; - Inf ], [- Inf , 2 , 5 ])
352
- @test x ≊ [" [-Inf, 2.0)" ; fill (" [2.0, 5.0]" , 4 ); " [-Inf, 2.0)" ]
352
+ @test x ≅ [" [-Inf, 2.0)" ; fill (" [2.0, 5.0]" , 4 ); " [-Inf, 2.0)" ]
353
353
@test levels (x) == [" [-Inf, 2.0)" , " [2.0, 5.0]" ]
354
354
355
355
x = cut ([1 : 5 ; Inf ], 2 )
356
- @test x ≊ [fill (" Q1: [1.0, 3.5)" , 3 ); fill (" Q2: [3.5, Inf]" , 3 )]
356
+ @test x ≅ [fill (" Q1: [1.0, 3.5)" , 3 ); fill (" Q2: [3.5, Inf]" , 3 )]
357
357
@test levels (x) == [" Q1: [1.0, 3.5)" , " Q2: [3.5, Inf]" ]
358
358
359
359
x = cut ([1 : 5 ; - Inf ], 2 )
360
- @test x ≊ [fill (" Q1: [-Inf, 2.5)" , 2 ); fill (" Q2: [2.5, 5.0]" , 3 ); " Q1: [-Inf, 2.5)" ]
360
+ @test x ≅ [fill (" Q1: [-Inf, 2.5)" , 2 ); fill (" Q2: [2.5, 5.0]" , 3 ); " Q1: [-Inf, 2.5)" ]
361
361
@test levels (x) == [" Q1: [-Inf, 2.5)" , " Q2: [2.5, 5.0]" ]
362
362
end
363
363
0 commit comments