Selaa lähdekoodia

fix test break

Darien Raymond 8 vuotta sitten
vanhempi
commit
6c736b8d57
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      common/errors/errors.go

+ 1 - 1
common/errors/errors.go

@@ -37,7 +37,7 @@ type Error struct {
 
 func (v *Error) formMessage() string {
 	if len(v.format) == 0 {
-		return serial.Concat(v.message)
+		return serial.Concat(v.message...)
 	}
 	return fmt.Sprintf(v.format, v.message...)
 }