aboutsummaryrefslogtreecommitdiff
path: root/test/common/queue.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/common/queue.h')
-rw-r--r--test/common/queue.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/common/queue.h b/test/common/queue.h
index 7eedec9a5d..e3c0cb0a19 100644
--- a/test/common/queue.h
+++ b/test/common/queue.h
@@ -34,7 +34,7 @@ public:
void test_front_back_pop() {
Common::Queue<int> queue;
-
+
queue.push( 42);
queue.push(-23);
@@ -49,7 +49,7 @@ public:
queue.pop();
TS_ASSERT_EQUALS(queue.front(), 42);
}
-
+
void test_assign() {
Common::Queue<int> q1, q2;