diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2020-01-08 06:57:25 +0100 |
---|---|---|
committer | Adolfo Jayme Barrientos <fitojb@ubuntu.com> | 2020-01-08 13:25:05 +0100 |
commit | 2e5c4b4081411b77b5e0593225b805d3756f7533 (patch) | |
tree | 48ef95101e79cf6a86ee34a6678426b4bc8251de /sfx2/qa/complex | |
parent | cc8eeb3148b88807b4acf4ac3c829fb4f37f9a80 (diff) |
Grammar fixes
Change-Id: I6ac6f6abb601aa254e94612e6826488393de8e3c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86383
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
Diffstat (limited to 'sfx2/qa/complex')
-rw-r--r-- | sfx2/qa/complex/sfx2/UndoManager.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/qa/complex/sfx2/UndoManager.java b/sfx2/qa/complex/sfx2/UndoManager.java index 7e438e852e71..a455a5eb4ca0 100644 --- a/sfx2/qa/complex/sfx2/UndoManager.java +++ b/sfx2/qa/complex/sfx2/UndoManager.java @@ -663,9 +663,9 @@ public class UndoManager m_currentTestCase.verifyInitialDocumentState(); // redo the modification, ensure the listener got the proper notifications - assertEquals( "did not yet do a redo!", 0, m_undoListener.getRedoActionCount() ); + assertEquals( "not yet made a redo!", 0, m_undoListener.getRedoActionCount() ); i_undoManager.redo(); - assertEquals( "did a redo, but got no notification of it!", 1, m_undoListener.getRedoActionCount() ); + assertEquals( "made a redo, but got no notification of it!", 1, m_undoListener.getRedoActionCount() ); // ensure the document is in the proper state, again m_currentTestCase.verifySingleModificationDocumentState(); |