Merge "Change format string %s -> %#v"

This commit is contained in:
Liz Kammer 2022-01-14 14:16:40 +00:00 committed by Gerrit Code Review
commit 0bda815c2e

View file

@ -492,7 +492,7 @@ func (ba *BoolAttribute) Collapse() error {
// Verify post-condition; this should never fail, provided no additional
// axes are introduced.
if len(ba.ConfigurableValues) > 1 {
panic(fmt.Errorf("error in collapsing attribute: %s", ba))
panic(fmt.Errorf("error in collapsing attribute: %#v", ba))
}
}
return nil