Skip to content

Commit

Permalink
Minor change for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
federicojasson authored and rdleal committed Apr 27, 2024
1 parent 105d679 commit 15ec899
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions interval/search_tree_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ func TestSearchTree_Size(t *testing.T) {

err := st.Delete(4, 5)
if err != nil {
t.Fatalf("st.Delete(4, 5): Got unexpected error %v", err)
t.Fatalf("st.Delete(4, 5): got unexpected error %v", err)
}

if got, want := st.Size(), s-1; got != want {
Expand All @@ -89,7 +89,7 @@ func TestSearchTree_Size(t *testing.T) {

err = st.Delete(15, 16)
if err != nil {
t.Fatalf("st.Delete(15, 16) Got unexpected error %v", err)
t.Fatalf("st.Delete(15, 16) got unexpected error %v", err)
}

if got, want := st.Size(), s-2; got != want {
Expand Down

0 comments on commit 15ec899

Please sign in to comment.