Skip to content

Commit

Permalink
fix failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bonzofenix committed Aug 28, 2024
1 parent 9d5e2a2 commit 9756c37
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/autoscaler/configutil/configutil_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ import (
var _ = Describe("Configutil", func() {
Describe("VCAPConfiguration", func() {
var vcapConfiguration *VCAPConfiguration

var vcapApplicationJson string
var vcapServicesJson string
var err error
Expand Down Expand Up @@ -84,6 +83,10 @@ var _ = Describe("Configutil", func() {
})

Describe("MaterializeDBFromService", func() {
BeforeEach(func() {
vcapApplicationJson = ""
vcapApplicationJson = `{}`
})

When("VCAP_SERVICES has relational db service bind to app", func() {
When("when uri is wrong", func() {
Expand Down

0 comments on commit 9756c37

Please sign in to comment.