From: Paweł Chmielowski Date: Fri, 18 Nov 2016 11:54:06 +0000 (+0100) Subject: Fix elixir tests X-Git-Tag: 16.12-beta1~46 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=daab95e3b5d47327f07ec7efd1189e71a41e6439;p=ejabberd Fix elixir tests --- diff --git a/test/ejabberd_cyrsasl_test.exs b/test/ejabberd_cyrsasl_test.exs index d9b949294..b85be0f8e 100644 --- a/test/ejabberd_cyrsasl_test.exs +++ b/test/ejabberd_cyrsasl_test.exs @@ -44,12 +44,12 @@ defmodule EjabberdCyrsaslTest do test "Plain text (correct user wrong pass)", context do step1 = :cyrsasl.server_start(context[:cyrstate], "PLAIN", <<0,"user1",0,"badpass">>) - assert step1 == {:error, "not-authorized", "user1"}, "got error response" + assert step1 == {:error, :"not-authorized", "user1"} end test "Plain text (wrong user wrong pass)", context do step1 = :cyrsasl.server_start(context[:cyrstate], "PLAIN", <<0,"nouser1",0,"badpass">>) - assert step1 == {:error, "not-authorized", "nouser1"}, "got error response" + assert step1 == {:error, :"not-authorized", "nouser1"} end test "Anonymous", context do