You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Файл main_test.go, перепутаны местами переменные в логе теста:
Как сейчас
assert.Less(t, timeEnd, expectedTime, "слишком долгоe выполнение. что-то где-то нераспараллелено. должно быть не больше, чем %s, а было %s", timeEnd, expectedTime)
Как должно
assert.Less(t, timeEnd, expectedTime, "слишком долгоe выполнение. что-то где-то нераспараллелено. должно быть не больше, чем %s, а было %s", expectedTime, timeEnd)
The text was updated successfully, but these errors were encountered:
Файл
main_test.go
, перепутаны местами переменные в логе теста:Как сейчас
Как должно
The text was updated successfully, but these errors were encountered: