Skip to content

Commit 28022c9

Browse files
Take variables of env
1 parent edef856 commit 28022c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_phoneid.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55

66
class TestPhoneId(TestCase):
77
def setUp(self):
8-
self.customer_id = "FFFFFFFF-EEEE-DDDD-1234-AB1234567890"
9-
self.api_key = "EXAMPLE----TE8sTgg45yusumoN6BYsBVkh+yRJ5czgsnCehZaOYldPJdmFh6NeX8kunZ2zU1YWaUw/0wV6xfw=="
8+
self.customer_id = os.getenv('CUSTOMER_ID', 'FFFFFFFF-EEEE-DDDD-1234-AB1234567890')
9+
self.api_key = os.getenv('API_KEY', 'EXAMPLE----TE8sTgg45yusumoN6BYsBVkh+yRJ5czgsnCehZaOYldPJdmFh6NeX8kunZ2zU1YWaUw/0wV6xfw==')
1010
self.phone_number_test = "11234567890"
1111

1212
def test_phoneid_constructor(self):

0 commit comments

Comments
 (0)