2016-09-08 13:11:39 -04:00
|
|
|
package formatter
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2017-05-09 17:24:40 -04:00
|
|
|
|
2018-10-23 11:05:44 -04:00
|
|
|
"github.com/docker/cli/internal/test"
|
2016-09-08 13:11:39 -04:00
|
|
|
)
|
|
|
|
|
2018-10-23 11:05:44 -04:00
|
|
|
// Deprecated: use internal/test.CompareMultipleValues instead
|
2016-09-08 13:11:39 -04:00
|
|
|
func compareMultipleValues(t *testing.T, value, expected string) {
|
2018-10-23 11:05:44 -04:00
|
|
|
test.CompareMultipleValues(t, value, expected)
|
2016-09-08 13:11:39 -04:00
|
|
|
}
|