Skip to content

Commit

Permalink
feat: update
Browse files Browse the repository at this point in the history
  • Loading branch information
shihyuho committed Jan 20, 2024
1 parent a3bda69 commit b05b31e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ func TestMemoryCalculation_WithLoadedClassCount(t *testing.T) {
for _, o := range calc.ContributeOptions {
options = strings.ReplaceAll(options, o, "")
}
if options == " " {
if options == "" {
t.Errorf("Execute returned an empty string")
}
}
Expand All @@ -37,7 +37,7 @@ func TestMemoryCalculation_WithoutLoadedClassCount(t *testing.T) {
for _, o := range calc.ContributeOptions {
options = strings.ReplaceAll(options, o, "")
}
if options == " " {
if options == "" {
t.Errorf("Execute returned an empty string")
}
}

0 comments on commit b05b31e

Please sign in to comment.