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 | 593ab1bb69e15586b9da9d9fbd1f9e5fd8878b13 (patch) | |
tree | d59bb55e949fb32bdf87f66e9164c07212dc83d9 | |
parent | 3752c51a3a2e27a1d5231e9acb27deb864024bb0 (diff) | |
download | prosody-593ab1bb69e15586b9da9d9fbd1f9e5fd8878b13.tar.gz prosody-593ab1bb69e15586b9da9d9fbd1f9e5fd8878b13.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"; |