Skip to content

Commit 943ec19

Browse files
author
Guillaume Badi
committed
-_-
1 parent e6fe94c commit 943ec19

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import unittest
2-
import mailjet_rest.client
2+
from mailjet_rest import Client
33
import os
44

55
API_KEY = os.environ['MJ_APIKEY_PUBLIC']
66
API_SECRET = os.environ['MJ_APIKEY_PRIVATE']
77

8-
mj = mailjet.Client(auth=(API_KEY, API_SECRET))
8+
mj = Client(auth=(API_KEY, API_SECRET))
99

1010
class TestSuite(unittest.TestCase):
1111

0 commit comments

Comments
 (0)