Implement HashTable + fix some extra blank spaces, remove Bool type (using bool ...
[cgds.git] / test / t.Queue.c
index bf095c7..9dd1986 100644 (file)
@@ -1,7 +1,7 @@
 #include <stdlib.h>
 #include "cgds/Queue.h"
-#include "test/helpers.h"
-#include "test/lut.h"
+#include "helpers.h"
+#include "lut.h"
 
 void t_queue_clear()
 {
@@ -43,7 +43,7 @@ void t_queue_push_pop_basic()
        int n = 10;
 
        Queue* q = queue_new(double);
-       for (int i = 0; i < n; i++) 
+       for (int i = 0; i < n; i++)
                queue_push(q, (double) i);
        // iterate and check values
        double ckValue = 0.0;