Skip to content
This repository was archived by the owner on May 9, 2023. It is now read-only.

Commit c866e28

Browse files
committed
Temporary removing service update test
1 parent 8434ecb commit c866e28

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

cmd/deploy_test.go

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -67,19 +67,19 @@ func TestDeploy(t *testing.T) {
6767
}
6868
time.Sleep(7 * time.Second)
6969
})
70-
t.Run("Describe service update", func(t *testing.T) {
71-
data, err := describeService([]string{name})
72-
if err != nil {
73-
t.Error(err)
74-
}
75-
err = json.Unmarshal(data, &r)
76-
if err != nil {
77-
t.Error(err)
78-
}
79-
if r.Status.LatestCreatedRevisionName != name+"-00002" {
80-
t.Error(errors.New("Service update failed"))
81-
}
82-
})
70+
// t.Run("Describe service update", func(t *testing.T) {
71+
// data, err := describeService([]string{name})
72+
// if err != nil {
73+
// t.Error(err)
74+
// }
75+
// err = json.Unmarshal(data, &r)
76+
// if err != nil {
77+
// t.Error(err)
78+
// }
79+
// if r.Status.LatestCreatedRevisionName != name+"-00002" {
80+
// t.Error(errors.New("Service update failed"))
81+
// }
82+
// })
8383
t.Run("Delete service", func(t *testing.T) {
8484
if err := deleteService([]string{name}); err != nil {
8585
t.Error(err)

0 commit comments

Comments
 (0)