Skip to content
This repository has been archived by the owner on Dec 10, 2024. It is now read-only.

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
harrisoncramer committed Mar 30, 2024
1 parent dd468ec commit 8c9df79
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions draft_notes_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,6 @@ func TestCreateDraftNote(t *testing.T) {
note, _, err := client.DraftNotes.CreateDraftNote("1", 4329, &CreateDraftNoteOptions{
Note: Ptr("Some new draft note"),
})

if err != nil {
t.Fatal(err)
}
Expand All @@ -143,7 +142,6 @@ func TestCreateDraftNote(t *testing.T) {
if !reflect.DeepEqual(note, want) {
t.Errorf("DraftNotes.GetDraftNote want %#v, got %#v", note, want)
}

}

func TestUpdateDraftNote(t *testing.T) {
Expand All @@ -156,7 +154,6 @@ func TestUpdateDraftNote(t *testing.T) {
note, _, err := client.DraftNotes.UpdateDraftNote("1", 4329, 3, &UpdateDraftNoteOptions{
Note: Ptr("Some changed draft note"),
})

if err != nil {
t.Fatal(err)
}
Expand Down

0 comments on commit 8c9df79

Please sign in to comment.