diff --git a/pkg/yqlib/all_at_once_evaluator_test.go b/pkg/yqlib/all_at_once_evaluator_test.go index 64f0ce2f..ce83db88 100644 --- a/pkg/yqlib/all_at_once_evaluator_test.go +++ b/pkg/yqlib/all_at_once_evaluator_test.go @@ -67,12 +67,12 @@ func TestTomlDecoderCanBeReinitializedAcrossDocuments(t *testing.T) { } test.AssertResult(t, "Foobar", firstDocuments.Front().Value.(*CandidateNode).Content[1].Value) - secondDocuments, err := ReadDocuments(strings.NewReader("id = \"Barbar\"\n"), decoder) + secondDocuments, err := ReadDocuments(strings.NewReader("id = \"Banana\"\n"), decoder) if err != nil { t.Fatalf("failed to read second TOML document: %v", err) } if secondDocuments.Len() != 1 { t.Fatalf("expected second document count to be 1, got %d", secondDocuments.Len()) } - test.AssertResult(t, "Barbar", secondDocuments.Front().Value.(*CandidateNode).Content[1].Value) + test.AssertResult(t, "Banana", secondDocuments.Front().Value.(*CandidateNode).Content[1].Value) }