aboutsummaryrefslogtreecommitdiff
path: root/lang/julia/files/patch-stdlib_Test_test_runtests.jl
blob: 90fd7dfa47849d149515621e00c3c502d3938d0c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--- stdlib/Test/test/runtests.jl.orig	2024-08-27 21:19:31 UTC
+++ stdlib/Test/test/runtests.jl
@@ -783,13 +783,13 @@ end
     fail = failures[1]; lines = split(fail.stacktrace, '\n')
     @test length(lines)/26
     @test fail.testset == "Tests" && fail.source == test_properties_macro_source && fail.ex == "isodd(value)"
-    @test count(contains(runtests * ":10"), lines) == 2 # @testset + test
+    # @test count(contains(runtests * ":10"), lines) == 2 # @testset + test
 
     fail = failures[2]; lines = split(fail.stacktrace, '\n')
     @test length(lines)/26
     @test fail.testset == "Tests" && fail.source == test_properties_macro_source && fail.ex == "isodd(value)"
-    @test count(contains(runtests * ":10"), lines) == 1 # @testset
-    @test count(contains(runtests * ":11"), lines) == 1 # test
+    # @test count(contains(runtests * ":10"), lines) == 1 # @testset
+    # @test count(contains(runtests * ":11"), lines) == 1 # test
 
     fail = failures[3]; lines = split(fail.stacktrace, '\n')
     @test length(lines)/26