Skip to content

Commit

Permalink
apply comments
Browse files Browse the repository at this point in the history
  • Loading branch information
chronolaw committed Nov 27, 2023
1 parent 85be0eb commit 3f13a90
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions kong/plugins/hmac-auth/access.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ local constants = require "kong.constants"
local openssl_hmac = require "resty.openssl.hmac"


local sha256_base64 = require "kong.tools.sha256".sha256_base64
local string_split = require "kong.tools.string".split
local sha256_base64 = require("kong.tools.sha256").sha256_base64
local string_split = require("kong.tools.string").split


local ngx = ngx
Expand Down
2 changes: 1 addition & 1 deletion spec/03-plugins/20-ldap-auth/01-access_spec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ local cjson = require "cjson"

local lower = string.lower
local fmt = string.format
local sha256_hex = require "kong.tools.sha256".sha256_hex
local sha256_hex = require("kong.tools.sha256").sha256_hex


local function cache_key(conf, username, password)
Expand Down
2 changes: 1 addition & 1 deletion spec/03-plugins/20-ldap-auth/02-invalidations_spec.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
local helpers = require "spec.helpers"
local fmt = string.format
local lower = string.lower
local sha256_hex = require "kong.tools.sha256".sha256_hex
local sha256_hex = require("kong.tools.sha256").sha256_hex

local ldap_host_aws = "ec2-54-172-82-117.compute-1.amazonaws.com"

Expand Down

0 comments on commit 3f13a90

Please sign in to comment.