diff --git a/packages/react/src/DateInput/DateInput.test.tsx b/packages/react/src/DateInput/DateInput.test.tsx
index 48512d37ec..b15eadfd7b 100644
--- a/packages/react/src/DateInput/DateInput.test.tsx
+++ b/packages/react/src/DateInput/DateInput.test.tsx
@@ -68,7 +68,7 @@ describe('Date input', () => {
describe('Type', () => {
dateInputTypes.map((type) =>
- it(`passes on the ‘${type}’ type`, () => {
+ it(`sets the ‘${type}’ type`, () => {
const { container } = render()
const component = container.querySelector(':only-child')
diff --git a/packages/react/src/TextInput/TextInput.test.tsx b/packages/react/src/TextInput/TextInput.test.tsx
index d68af4d442..f0b2f38e72 100644
--- a/packages/react/src/TextInput/TextInput.test.tsx
+++ b/packages/react/src/TextInput/TextInput.test.tsx
@@ -122,7 +122,7 @@ describe('Text input', () => {
textInputTypes
.filter((type) => type !== 'password')
.map((type) =>
- it(`passes on the ‘${type}’ type`, () => {
+ it(`sets the ‘${type}’ type`, () => {
render()
const component = screen.getByRole('textbox')
@@ -132,7 +132,7 @@ describe('Text input', () => {
)
// https://github.com/testing-library/dom-testing-library/issues/567
- it(`passes on the ‘password’ type`, () => {
+ it('sets the ‘password’ type', () => {
render(
<>