From fad459eb71fbb99716016df75a94aad0e4e684e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B4natas=20Santos?= Date: Mon, 21 Aug 2023 18:00:49 -0300 Subject: [PATCH] Update test --- tests/test_users.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/test_users.py b/tests/test_users.py index f0ca5586..5be255e2 100644 --- a/tests/test_users.py +++ b/tests/test_users.py @@ -226,7 +226,6 @@ def test_authenticate_with_magic_auth( def test_authenticate_with_password( self, capture_and_mock_request, mock_auth_response ): - code = "test_auth" email = "marcelina@foo-corp.com" password = "test123" expires_in = 3600 @@ -236,7 +235,6 @@ def test_authenticate_with_password( url, request = capture_and_mock_request("post", mock_auth_response, 200) response = self.users.authenticate_with_password( - code=code, email=email, password=password, expires_in=expires_in, @@ -247,7 +245,6 @@ def test_authenticate_with_password( assert url[0].endswith("users/session/token") assert response["user"]["id"] == "user_01H7ZGXFP5C6BBQY6Z7277ZCT0" assert response["session"]["id"] == "session_01E4ZCR3C56J083X43JQXF3JK5" - assert request["json"]["code"] == code assert request["json"]["email"] == email assert request["json"]["password"] == password assert request["json"]["user_agent"] == user_agent