summaryrefslogtreecommitdiff
path: root/auto_tests/assoc_test.c
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2016-09-12 16:48:35 +0100
committeriphydf <iphydf@users.noreply.github.com>2016-09-16 12:06:02 +0100
commit1494e474dde58ec6e446cdbfad9a8d89f6c4796c (patch)
treee454a18a0f61468d10833d8e80039d025f94f568 /auto_tests/assoc_test.c
parent37c041f8159f7e89f2585243e9b8073f47d77fd1 (diff)
Ensure that all TODOs have an owner.
In the future, all TODOs added either need a bug number (TODO(#NN)) or a person's github user name. By default, I made irungentoo the owner of all toxcore TODOs, mannol the owner of toxav TODOs, and myself the owner of API TODOs.
Diffstat (limited to 'auto_tests/assoc_test.c')
-rw-r--r--auto_tests/assoc_test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/auto_tests/assoc_test.c b/auto_tests/assoc_test.c
index 887ffc0b..4814601c 100644
--- a/auto_tests/assoc_test.c
+++ b/auto_tests/assoc_test.c
@@ -17,7 +17,7 @@
17 17
18START_TEST(test_basics) 18START_TEST(test_basics)
19{ 19{
20 /* TODO: real test */ 20 /* TODO(irungentoo): real test */
21 uint8_t id[crypto_box_PUBLICKEYBYTES] = {1}; 21 uint8_t id[crypto_box_PUBLICKEYBYTES] = {1};
22 Assoc *assoc = new_Assoc_default(NULL, id); 22 Assoc *assoc = new_Assoc_default(NULL, id);
23 ck_assert_msg(assoc != NULL, "failed to create default assoc"); 23 ck_assert_msg(assoc != NULL, "failed to create default assoc");
@@ -61,7 +61,7 @@ END_TEST
61 61
62START_TEST(test_fillup) 62START_TEST(test_fillup)
63{ 63{
64 /* TODO: real test */ 64 /* TODO(irungentoo): real test */
65 int i, j; 65 int i, j;
66 uint8_t id[crypto_box_PUBLICKEYBYTES]; 66 uint8_t id[crypto_box_PUBLICKEYBYTES];
67 //uint32_t a = current_time(); 67 //uint32_t a = current_time();