Fix flag message to run updater integration tests
This commit is contained in:
parent
998f718354
commit
2d0c3d9de9
|
@ -7,7 +7,7 @@ import (
|
|||
func TestClientReachViewVersion(t *testing.T) {
|
||||
|
||||
if !*runUpdaterIntegrationTests {
|
||||
t.Skip("To run this test, use: go test -integration")
|
||||
t.Skip("To run this test, use: go test -updater-integration")
|
||||
}
|
||||
|
||||
client := NewUpdaterClient(
|
||||
|
|
|
@ -7,7 +7,7 @@ import (
|
|||
func TestClientReboutNow(t *testing.T) {
|
||||
|
||||
if !*runUpdaterIntegrationTests {
|
||||
t.Skip("To run this test, use: go test -integration")
|
||||
t.Skip("To run this test, use: go test -updater-integration")
|
||||
}
|
||||
|
||||
client := NewUpdaterClient(
|
||||
|
|
|
@ -7,7 +7,7 @@ import (
|
|||
func TestClientReceiverUpgradeAvailable(t *testing.T) {
|
||||
|
||||
if !*runUpdaterIntegrationTests {
|
||||
t.Skip("To run this test, use: go test -integration")
|
||||
t.Skip("To run this test, use: go test -updater-integration")
|
||||
}
|
||||
|
||||
client := NewUpdaterClient(
|
||||
|
|
|
@ -7,7 +7,7 @@ import (
|
|||
func TestClientTestResults(t *testing.T) {
|
||||
|
||||
if !*runUpdaterIntegrationTests {
|
||||
t.Skip("To run this test, use: go test -integration")
|
||||
t.Skip("To run this test, use: go test -updater-integration")
|
||||
}
|
||||
|
||||
client := NewUpdaterClient(
|
||||
|
|
|
@ -7,7 +7,7 @@ import (
|
|||
func TestClientTimeSync(t *testing.T) {
|
||||
|
||||
if !*runUpdaterIntegrationTests {
|
||||
t.Skip("To run this test, use: go test -integration")
|
||||
t.Skip("To run this test, use: go test -updater-integration")
|
||||
}
|
||||
|
||||
client := NewUpdaterClient(
|
||||
|
|
|
@ -9,7 +9,7 @@ import (
|
|||
func TestClientSavedWiFiNetworks(t *testing.T) {
|
||||
|
||||
if !*runUpdaterIntegrationTests {
|
||||
t.Skip("To run this test, use: go test -integration")
|
||||
t.Skip("To run this test, use: go test -updater-integration")
|
||||
}
|
||||
|
||||
client := NewUpdaterClient(
|
||||
|
@ -32,7 +32,7 @@ func TestClientSavedWiFiNetworks(t *testing.T) {
|
|||
func TestClientCRUDWiFiNetwork(t *testing.T) {
|
||||
|
||||
if !*runUpdaterIntegrationTests {
|
||||
t.Skip("To run this test, use: go test -integration")
|
||||
t.Skip("To run this test, use: go test -updater-integration")
|
||||
}
|
||||
|
||||
client := NewUpdaterClient(
|
||||
|
|
Reference in New Issue