aboutsummaryrefslogtreecommitdiff
path: root/unittest
diff options
context:
space:
mode:
authorSzczepan Zalega <szczepan@nitrokey.com>2016-08-05 10:06:12 +0200
committerSzczepan Zalega <szczepan@nitrokey.com>2016-08-05 10:19:25 +0200
commitb038eabe137af6187c41344aa2f554cd5d72baad (patch)
tree9b672ccd548de97cbe773c2fbfb3a069c759a6f6 /unittest
parent24a6cc79eabc5deda00588b19c9d33520d2bb93a (diff)
downloadlibnitrokey-b038eabe137af6187c41344aa2f554cd5d72baad.tar.gz
libnitrokey-b038eabe137af6187c41344aa2f554cd5d72baad.tar.bz2
Remove obsolete comments
Signed-off-by: Szczepan Zalega <szczepan@nitrokey.com>
Diffstat (limited to 'unittest')
-rw-r--r--unittest/test_bindings.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/unittest/test_bindings.py b/unittest/test_bindings.py
index 36dc4a3..0f8c0ff 100644
--- a/unittest/test_bindings.py
+++ b/unittest/test_bindings.py
@@ -32,7 +32,6 @@ def C(request):
a = iter(declarations)
for declaration in a:
- # extern int NK_write_totp_slot(int slot_number, char* secret, int time_window);
if declaration.startswith('extern') and not '"C"' in declaration:
declaration = declaration.replace('extern', '').strip()
while not ';' in declaration: