Remove redundant spaces to fix the 2e test
Signed-off-by: z1cheng <imchench@gmail.com>
This commit is contained in:
parent
5e6d3f31a4
commit
6ff2a18b6e
1 changed files with 3 additions and 3 deletions
|
@ -30,7 +30,7 @@ var _ = framework.DescribeSetting("aio-write", func() {
|
||||||
ginkgo.It("should be enabled by default", func() {
|
ginkgo.It("should be enabled by default", func() {
|
||||||
f.WaitForNginxConfiguration(
|
f.WaitForNginxConfiguration(
|
||||||
func(cfg string) bool {
|
func(cfg string) bool {
|
||||||
return strings.Contains(cfg, "aio_write on;")
|
return strings.Contains(cfg, "aio_write on")
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -39,7 +39,7 @@ var _ = framework.DescribeSetting("aio-write", func() {
|
||||||
|
|
||||||
f.WaitForNginxConfiguration(
|
f.WaitForNginxConfiguration(
|
||||||
func(cfg string) bool {
|
func(cfg string) bool {
|
||||||
return strings.Contains(cfg, "aio_write on;")
|
return strings.Contains(cfg, "aio_write on")
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -48,7 +48,7 @@ var _ = framework.DescribeSetting("aio-write", func() {
|
||||||
|
|
||||||
f.WaitForNginxConfiguration(
|
f.WaitForNginxConfiguration(
|
||||||
func(cfg string) bool {
|
func(cfg string) bool {
|
||||||
return !strings.Contains(cfg, "aio_write on;")
|
return !strings.Contains(cfg, "aio_write on")
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue