fix test step
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-03-18 14:47:45 +07:00
parent e3d2ba38a8
commit 823786c3ea
2 changed files with 7 additions and 3 deletions
+6 -2
View File
@@ -1,6 +1,9 @@
package calories
import "testing"
import (
"fmt"
"testing"
)
func TestCalcCalories(t *testing.T) {
t.Parallel()
@@ -31,7 +34,7 @@ func TestCalcCalories(t *testing.T) {
{
"чай text",
"чай",
39,
79,
false,
},
}
@@ -46,6 +49,7 @@ func TestCalcCalories(t *testing.T) {
return
}
if count != tt.want {
fmt.Println(count, tt.want)
t.Errorf("error count: %v", err)
return
}