Skip to content

Commit

Permalink
UITests Fixed issue where note text isn't quite correct
Browse files Browse the repository at this point in the history
  • Loading branch information
charliescheer committed Jan 17, 2024
1 parent 2507b48 commit 8b0f619
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SimplenoteUITests/NoteList.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 8b0f619

Please sign in to comment.