Skip to content

Commit

Permalink
🤖 Format .jl files (#277)
Browse files Browse the repository at this point in the history
Co-authored-by: juliohm <[email protected]>
  • Loading branch information
github-actions[bot] and juliohm authored Jun 11, 2024
1 parent 28cfa2c commit 27cad23
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions test/shows.jl
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,8 @@

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

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

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

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

# compact mode
iostr = sprint(show, pipeline)
@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)"
@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)"

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

0 comments on commit 27cad23

Please sign in to comment.