Skip to content

Commit

Permalink
refactor: use position constants
Browse files Browse the repository at this point in the history
  • Loading branch information
aditipatelpro committed Aug 7, 2024
1 parent 8a0e640 commit 69956d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions join_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ func TestJoinVertical(t *testing.T) {
expected string
}
tests := []test{
{"pos0", JoinVertical(0, "A", "BBBB"), "A \nBBBB"},
{"pos1", JoinVertical(1, "A", "BBBB"), " A\nBBBB"},
{"pos0", JoinVertical(Left, "A", "BBBB"), "A \nBBBB"},
{"pos1", JoinVertical(Right, "A", "BBBB"), " A\nBBBB"},
{"pos0.25", JoinVertical(0.25, "A", "BBBB"), " A \nBBBB"},
}

Expand Down

0 comments on commit 69956d1

Please sign in to comment.