Skip to content

Commit cf4a2e1

Browse files
committed
adjust indentation in for loop, take 2 (tkelman)
1 parent bf245f7 commit cf4a2e1

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

test/random.jl

+8-8
Original file line numberDiff line numberDiff line change
@@ -545,14 +545,14 @@ let b = ['0':'9';'A':'Z';'a':'z']
545545
@test length(randstring(rng..., 20)) == 20
546546
@test issubset(randstring(rng...), b)
547547
for c = ['a':'z', "qwèrtï", Set(Vector{UInt8}("gcat"))],
548-
len = [8, 20]
549-
s = len == 8 ? randstring(rng..., c) : randstring(rng..., c, len)
550-
@test length(s) == len
551-
if eltype(c) == Char
552-
@test issubset(s, c)
553-
else # UInt8
554-
@test issubset(s, map(Char, c))
555-
end
548+
len = [8, 20]
549+
s = len == 8 ? randstring(rng..., c) : randstring(rng..., c, len)
550+
@test length(s) == len
551+
if eltype(c) == Char
552+
@test issubset(s, c)
553+
else # UInt8
554+
@test issubset(s, map(Char, c))
555+
end
556556
end
557557
end
558558
@test randstring(MersenneTwister(0)) == randstring(MersenneTwister(0), b)

0 commit comments

Comments
 (0)