Skip to content

Commit

Permalink
chore: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
aymanbagabas committed Aug 19, 2024
1 parent 92d44ed commit 549d076
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions textarea/textarea_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ func TestVerticalScrolling(t *testing.T) {

input := "This is a really long line that should wrap around the text area."

for _, k := range []rune(input) {
for _, k := range input {
textarea, _ = textarea.Update(keyPress(k))
}

Expand Down Expand Up @@ -69,7 +69,7 @@ func TestWordWrapOverflowing(t *testing.T) {

input := "Testing Testing Testing Testing Testing Testing Testing Testing"

for _, k := range []rune(input) {
for _, k := range input {
textarea, _ = textarea.Update(keyPress(k))
textarea.View()
}
Expand All @@ -81,7 +81,7 @@ func TestWordWrapOverflowing(t *testing.T) {

input = "Testing"

for _, k := range []rune(input) {
for _, k := range input {
textarea, _ = textarea.Update(keyPress(k))
textarea.View()
}
Expand Down

0 comments on commit 549d076

Please sign in to comment.