blob: 827ac6f1ed981ceb65e4b891e6869de64fdc1ade [file] [log] [blame]
package testhelper
import (
"runtime"
"strings"
)
// Converts the line endings when on Windows
func Unix2dos(unix string) string {
if runtime.GOOS != "windows" {
return unix
}
return strings.Replace(unix, "\n", "\r\n", -1)
}