We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 024f296 commit e6eff31Copy full SHA for e6eff31
test/mongo/password_safe_test.exs
@@ -11,7 +11,7 @@ defmodule Mongo.PasswordSafeTest do
11
PasswordSafe.set_password(pid, pw)
12
%{key: _key, pw: enc_pw} = :sys.get_state(pid)
13
assert enc_pw != pw
14
- assert pw == PasswordSafe.get_pasword(pid)
+ assert pw == PasswordSafe.get_password(pid)
15
end
16
17
#
@@ -22,6 +22,6 @@ defmodule Mongo.PasswordSafeTest do
22
url = "mongodb://myDBReader:D1fficultP%40ssw0rd@mongodb0.example.com:27017/admin"
23
opts = UrlParser.parse_url(url: url)
24
assert "*****" == Keyword.get(opts, :password)
25
- assert "D1fficultP@ssw0rd" == PasswordSafe.get_pasword(Keyword.get(opts, :pw_safe))
+ assert "D1fficultP@ssw0rd" == PasswordSafe.get_password(Keyword.get(opts, :pw_safe))
26
27
0 commit comments