From 8b0f619e54c0ffffffea4c0d045021274c0dfc11 Mon Sep 17 00:00:00 2001 From: Charlie Scheer Date: Wed, 17 Jan 2024 16:13:02 -0700 Subject: [PATCH] UITests Fixed issue where note text isn't quite correct --- SimplenoteUITests/NoteList.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SimplenoteUITests/NoteList.swift b/SimplenoteUITests/NoteList.swift index a192be3f7..1539d3c83 100644 --- a/SimplenoteUITests/NoteList.swift +++ b/SimplenoteUITests/NoteList.swift @@ -32,11 +32,11 @@ class NoteList { } class func getNoteCellHeight(_ noteName: String) -> CGFloat { - return NoteList.getNoteCell(noteName).frame.height + return NoteList.getNoteCell(noteName).frame.height.rounded() } class func openAllNotes() { - guard !NoteList.isAllNotesListOpen() else { return } + guard !isAllNotesListOpen() else { return } print(">>> Opening \"All Notes\"") Sidebar.open() let allNotesButton = app.tables.staticTexts[UID.Button.allNotes]