Skip to content

Commit 27cad23

Browse files
🤖 Format .jl files (#277)
Co-authored-by: juliohm <[email protected]>
1 parent 28cfa2c commit 27cad23

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

test/shows.jl

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,8 @@
528528

529529
# compact mode
530530
iostr = sprint(show, pipeline)
531-
@test iostr == "Select(selector: [:x, :z], newnames: nothing) → ZScore(selector: all) → LowHigh(selector: all, low: 0, high: 1)"
531+
@test iostr ==
532+
"Select(selector: [:x, :z], newnames: nothing) → ZScore(selector: all) → LowHigh(selector: all, low: 0, high: 1)"
532533

533534
# full mode
534535
iostr = sprint(show, MIME("text/plain"), pipeline)
@@ -547,7 +548,8 @@
547548

548549
# compact mode
549550
iostr = sprint(show, pipeline)
550-
@test iostr == "LowHigh(selector: all, low: 0.3, high: 0.6) ⊔ EigenAnalysis(proj: :VDV, maxdim: nothing, pratio: 1.0) ⊔ Functional(selector: all, fun: exp)"
551+
@test iostr ==
552+
"LowHigh(selector: all, low: 0.3, high: 0.6) ⊔ EigenAnalysis(proj: :VDV, maxdim: nothing, pratio: 1.0) ⊔ Functional(selector: all, fun: exp)"
551553

552554
# full mode
553555
iostr = sprint(show, MIME("text/plain"), pipeline)
@@ -566,7 +568,8 @@
566568

567569
# compact mode
568570
iostr = sprint(show, pipeline)
569-
@test iostr == "ZScore(selector: all) → LowHigh(selector: all, low: 0.25, high: 0.75) ⊔ Functional(selector: all, fun: exp) → LowHigh(selector: all, low: 0.25, high: 0.75)"
571+
@test iostr ==
572+
"ZScore(selector: all) → LowHigh(selector: all, low: 0.25, high: 0.75) ⊔ Functional(selector: all, fun: exp) → LowHigh(selector: all, low: 0.25, high: 0.75)"
570573

571574
# full mode
572575
iostr = sprint(show, MIME("text/plain"), pipeline)

0 commit comments

Comments
 (0)