diff options
author | Szczepan Zalega <szczepan@nitrokey.com> | 2018-06-20 12:03:28 +0200 |
---|---|---|
committer | Szczepan Zalega <szczepan@nitrokey.com> | 2018-06-20 12:03:28 +0200 |
commit | f0f1691bc741da48bc2e1adfa4535026ae42d6d3 (patch) | |
tree | bca302e1843cffda095223ddc3506a1c7ad94d2c /unittest/test_pro.py | |
parent | 6e44c2b11bd1be9e080f1179283c49f9bb8955a5 (diff) | |
download | libnitrokey-f0f1691bc741da48bc2e1adfa4535026ae42d6d3.tar.gz libnitrokey-f0f1691bc741da48bc2e1adfa4535026ae42d6d3.tar.bz2 |
Replace *out function parameter with return value
Using return value instead of memory manipulation seem to be cleaner solution and less error prone
due to avoiding pointer usage.
Signed-off-by: Szczepan Zalega <szczepan@nitrokey.com>
Diffstat (limited to 'unittest/test_pro.py')
-rw-r--r-- | unittest/test_pro.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/unittest/test_pro.py b/unittest/test_pro.py index 53588f6..6fac172 100644 --- a/unittest/test_pro.py +++ b/unittest/test_pro.py @@ -872,3 +872,8 @@ def test_TOTP_codes_from_nitrokeyapp(secret, C): lib_at = lambda : bb(oath.totp(secret, period=period)) print (lib_at()) assert lib_at() == code_device + + +def test_get_device_model(C): + assert C.NK_get_device_model() != 0 + # assert C.NK_get_device_model() != C.NK_DISCONNECTED
\ No newline at end of file |