Fix other disabled echo mode comments

This commit is contained in:
Andy Feller 2025-04-28 11:20:17 -04:00
parent df0aedbe3c
commit 88d52ebf97

View file

@ -199,7 +199,7 @@ func TestAccessiblePrompter(t *testing.T) {
require.Equal(t, dummyAuthToken, authValue)
// Ensure the dummy password is not printed to the screen,
// asserting that echo mode is disabled without OS-level tests.
// asserting that echo mode is disabled.
_, err = console.ExpectString(" \r\n\r\n")
require.NoError(t, err)
})
@ -232,7 +232,7 @@ func TestAccessiblePrompter(t *testing.T) {
require.Equal(t, dummyAuthTokenForAfterFailure, authValue)
// Ensure the dummy password is not printed to the screen,
// asserting that echo mode is disabled without OS-level tests.
// asserting that echo mode is disabled.
_, err = console.ExpectString(" \r\n\r\n")
require.NoError(t, err)
})