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 | f3e617640e482d93f6e07fc6d38eece76a27e7a6 (patch) | |
tree | e8a0c90000f96854c20eddf617b4d3ef09dc8370 /tests | |
parent | e8becc602b404ee5898d26bc069ed2b206f31bcb (diff) | |
parent | 06f390561d388c0858ab87ec6f7e24e858799429 (diff) | |
download | prosody-f3e617640e482d93f6e07fc6d38eece76a27e7a6.tar.gz prosody-f3e617640e482d93f6e07fc6d38eece76a27e7a6.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 |