We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 433c212 commit e440eb5Copy full SHA for e440eb5
tests/resources/test_kyc_validations.py
@@ -1,11 +1,15 @@
1
import pytest
2
+from cuenca_validations.types import KYCValidationType
3
4
from cuenca import KYCValidation
5
6
7
@pytest.mark.vcr
8
def test_validation_create():
- kyc_validation: KYCValidation = KYCValidation.create(user_id="USFOOBAR")
9
+ kyc_validation: KYCValidation = KYCValidation.create(
10
+ user_id="USFOOBAR",
11
+ validation_type=KYCValidationType.background,
12
+ )
13
assert kyc_validation.id
14
assert kyc_validation.verification_id
15
0 commit comments