diff options
author | Matthew Wild <mwild1@gmail.com> | 2013-04-29 10:54:25 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2013-04-29 10:54:25 +0100 |
commit | 40f947f6e9650955cfbf4cd58e8a6a9d427cc660 (patch) | |
tree | e8a0c90000f96854c20eddf617b4d3ef09dc8370 /tests | |
parent | 491dd96b247d30765711215d7ce0161af8e3f73e (diff) | |
parent | 36da2c375046ef59c7ca30dfaf196188778fe2b5 (diff) | |
download | prosody-40f947f6e9650955cfbf4cd58e8a6a9d427cc660.tar.gz prosody-40f947f6e9650955cfbf4cd58e8a6a9d427cc660.zip |
Merge 0.9->trunk
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_util_sasl_scram.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_util_sasl_scram.lua b/tests/test_util_sasl_scram.lua index aeae8748..bc89829f 100644 --- a/tests/test_util_sasl_scram.lua +++ b/tests/test_util_sasl_scram.lua @@ -1,6 +1,6 @@ -local hmac_sha1 = require "util.hmac".sha1; +local hmac_sha1 = require "util.hashes".hmac_sha1; local function toHex(s) return s and (s:gsub(".", function (c) return ("%02x"):format(c:byte()); end)); end |