Fixes a test that weirdly fails in recent versions of Mojolicious

Change-Id: Ibce491ebd0692190310819fa97a6e07af3c0ab7c
diff --git a/t/query.t b/t/query.t
index f228e57..f6e588e 100644
--- a/t/query.t
+++ b/t/query.t
@@ -38,7 +38,7 @@
   ->text_is('#total-results', 51)
 
   # Total pages
-  ->element_count_is('#pagination a', 5)
+  ->element_count_is('#pagination > a', 5)
 
   # api_response
   ->content_like(qr/\"authorized\":null/)
@@ -148,7 +148,7 @@
   ->text_is('#total-results', '14,581')
 
   # Total pages
-  ->element_count_is('#pagination a', 7)
+  ->element_count_is('#pagination > a', 7)
   ->text_is('#pagination a:nth-of-type(6) span', 7291)
   ->content_like(qr!\"count":2!)
   ->content_like(qr!\"startIndex":0!)
@@ -178,7 +178,7 @@
   ->text_is('#total-results', '14,581')
 
   # Total pages
-  ->element_count_is('#pagination a', 7)
+  ->element_count_is('#pagination > a', 7)
   ->text_is('#pagination a:nth-of-type(6) span', 7291)
   ->content_like(qr!\"count":2!)
   ->content_like(qr!\"itemsPerPage":2!)