Skip to content

Commit

Permalink
test: update expected value
Browse files Browse the repository at this point in the history
  • Loading branch information
bevzzz committed Jan 30, 2024
1 parent c00d9bd commit 0f45b48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extension/adapter/adapter_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ func TestAdapter(t *testing.T) {
name: "AnsiHtml",
render: adapter.AnsiHtml(func(b []byte) []byte { return b }),
cell: test.Stdout("Hi, mom!"),
want: "Hi, mom!",
want: "<pre>Hi, mom!</pre>",
},
{
name: "AnsiHtml",
render: adapter.AnsiHtml(func(b []byte) []byte { return b }),
cell: test.Stderr("Hi, mom!"),
want: "Hi, mom!",
want: "<pre>Hi, mom!</pre>",
},
} {
t.Run(tt.name, func(t *testing.T) {
Expand Down

0 comments on commit 0f45b48

Please sign in to comment.