Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
pluveto authored and locao committed Apr 13, 2023
1 parent d3c5740 commit 1bb9850
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions spec/02-integration/11-dbless/03-config_persistence_spec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ local SERVICE_YML = [[
describe("dbless persistence #off", function()
lazy_setup(function()
assert(helpers.start_kong({
database = "off",
database = "off",
}))
end)

Expand All @@ -42,7 +42,7 @@ describe("dbless persistence #off", function()
admin_client:close()

assert(helpers.restart_kong({
database = "off",
database = "off",
}))

local proxy_client = assert(helpers.proxy_client())
Expand Down Expand Up @@ -77,7 +77,7 @@ describe("dbless persistence with a declarative config #off", function()

before_each(function()
assert(helpers.start_kong({
database = "off",
database = "off",
declarative_config = yaml_file,
}))
local admin_client = assert(helpers.admin_client())
Expand Down Expand Up @@ -121,7 +121,7 @@ describe("dbless persistence with a declarative config #off", function()

it("doesn't load the persisted lmdb config if a declarative config is set on restart", function()
assert(helpers.restart_kong({
database = "off",
database = "off",
declarative_config = yaml_file,
}))
local proxy_client = assert(helpers.proxy_client())
Expand All @@ -135,7 +135,7 @@ describe("dbless persistence with a declarative config #off", function()

it("doesn't load the persisted lmdb config if a declarative config is set on reload", function()
assert(helpers.reload_kong("off", "reload --prefix " .. helpers.test_conf.prefix, {
database = "off",
database = "off",
declarative_config = yaml_file,
}))
local res
Expand Down

0 comments on commit 1bb9850

Please sign in to comment.