diff --git a/README.md b/README.md index 3665b348..8bd3ce42 100644 --- a/README.md +++ b/README.md @@ -890,7 +890,7 @@ const selectInput = getByTestId('select-number') expect(textInput).toHaveValue('text') expect(numberInput).toHaveValue(5) expect(emptyInput).not.toHaveValue() -expect(selectInput).not.toHaveValue(['second', 'third']) +expect(selectInput).toHaveValue(['second', 'third']) ```