Skip to content

Commit

Permalink
[chore] fix flaky OTTL test (open-telemetry#32131)
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerHelmuth committed Apr 2, 2024
1 parent 27ad158 commit 886c4b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/ottl/ottlfuncs/func_string_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ func Test_String(t *testing.T) {
},
{
name: "map",
value: map[int]bool{1: true, 2: false},
expected: string("{\"1\":true,\"2\":false}"),
value: map[int]bool{1: true},
expected: string("{\"1\":true}"),
},
{
name: "slice",
Expand Down

0 comments on commit 886c4b4

Please sign in to comment.