Implement HashTable + fix some extra blank spaces, remove Bool type (using bool ...
[cgds.git] / test / t.PriorityQueue.c
index 66417e5..8cabc1e 100644 (file)
@@ -1,13 +1,13 @@
 #include <stdlib.h>
 #include "cgds/PriorityQueue.h"
-#include "test/helpers.h"
-#include "test/lut.h"
+#include "helpers.h"
+#include "lut.h"
 
 void t_priorityqueue_clear()
 {
        PriorityQueue* pq = priorityqueue_new(int, MIN_T, 2);
 
-       // NOTE: items with same priorities are supported; 
+       // NOTE: items with same priorities are supported;
        // since it is unused in this test, we arbitrarily choose 0.0
        priorityqueue_insert(pq, 0, 0.0);
        priorityqueue_insert(pq, 0, 0.0);