diff options
author | Kim Alvefur <zash@zash.se> | 2019-04-19 13:17:49 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-04-19 13:17:49 +0200 |
commit | 53f4351d9a70341bfa9083be3552b7f0d1f7ffbe (patch) | |
tree | d59bb55e949fb32bdf87f66e9164c07212dc83d9 | |
parent | d00874434414a06801a3b8d0be756176d1eb778b (diff) | |
download | prosody-53f4351d9a70341bfa9083be3552b7f0d1f7ffbe.tar.gz prosody-53f4351d9a70341bfa9083be3552b7f0d1f7ffbe.zip |
util.hmac: Ignore long hex lines in tests
-rw-r--r-- | spec/util_hmac_spec.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/spec/util_hmac_spec.lua b/spec/util_hmac_spec.lua index abcc92f1..a2125c3a 100644 --- a/spec/util_hmac_spec.lua +++ b/spec/util_hmac_spec.lua @@ -1,5 +1,8 @@ -- Test cases from RFC 4231 +-- Yes, the lines are long, it's annoying to split the long hex things. +-- luacheck: ignore 631 + local hmac = require "util.hmac"; local hex = require "util.hex"; |