Replace all go version attributes.

This commit is contained in:
Nick Palmer 2015-01-13 19:24:08 -08:00
parent fc2896020a
commit 2110a4a63b
2 changed files with 3 additions and 3 deletions

View File

@ -297,7 +297,7 @@ func loadTestReport(name string) (string, error) {
}
// replace value="1.0" With actual version
report := strings.Replace(string(contents), `value="1.0"`, fmt.Sprintf(`value="%s"`, runtime.Version()), 1)
report := strings.Replace(string(contents), `value="1.0"`, fmt.Sprintf(`value="%s"`, runtime.Version()), -1)
return report, nil
}

View File

@ -1,14 +1,14 @@
<testsuites>
<testsuite tests="2" failures="0" time="0.160" name="package/name1">
<properties>
<property name="go.version" value="go1.2.2"></property>
<property name="go.version" value="1.0"></property>
</properties>
<testcase classname="name1" name="TestOne" time="0.060"></testcase>
<testcase classname="name1" name="TestTwo" time="0.100"></testcase>
</testsuite>
<testsuite tests="2" failures="1" time="0.151" name="package/name2">
<properties>
<property name="go.version" value="go1.2.2"></property>
<property name="go.version" value="1.0"></property>
</properties>
<testcase classname="name2" name="TestOne" time="0.020">
<failure message="Failed" type="">file_test.go:11: Error message&#xA;file_test.go:11: Longer&#xA;&#x9;error&#xA;&#x9;message.</failure>