We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent edef856 commit 28022c9Copy full SHA for 28022c9
tests/test_phoneid.py
@@ -5,8 +5,8 @@
5
6
class TestPhoneId(TestCase):
7
def setUp(self):
8
- self.customer_id = "FFFFFFFF-EEEE-DDDD-1234-AB1234567890"
9
- self.api_key = "EXAMPLE----TE8sTgg45yusumoN6BYsBVkh+yRJ5czgsnCehZaOYldPJdmFh6NeX8kunZ2zU1YWaUw/0wV6xfw=="
+ self.customer_id = os.getenv('CUSTOMER_ID', 'FFFFFFFF-EEEE-DDDD-1234-AB1234567890')
+ self.api_key = os.getenv('API_KEY', 'EXAMPLE----TE8sTgg45yusumoN6BYsBVkh+yRJ5czgsnCehZaOYldPJdmFh6NeX8kunZ2zU1YWaUw/0wV6xfw==')
10
self.phone_number_test = "11234567890"
11
12
def test_phoneid_constructor(self):
0 commit comments