From 137ec31238db51c67d80da1ad737ced9c987ea31 Mon Sep 17 00:00:00 2001
From: Demian Katz <demian.katz@villanova.edu>
Date: Wed, 4 Nov 2015 14:48:36 -0500
Subject: [PATCH] Fixed timing issue.

---
 .../tests/integration-tests/src/VuFindTest/Mink/CartTest.php    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/CartTest.php b/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/CartTest.php
index 8ce767a355b..b445a2c3cd2 100644
--- a/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/CartTest.php
+++ b/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/CartTest.php
@@ -79,7 +79,7 @@ class CartTest extends \VuFindTest\Unit\MinkTestCase
         // completely failing.
         for ($clickRetry = 0; $clickRetry <= 4; $clickRetry++) {
             $updateCart->click();
-            $content = $this->findCss($page, '.popover-content');
+            $content = $page->find('css', '.popover-content');
             if (is_object($content)) {
                 $this->assertEquals(
                     'No items were selected. '
-- 
GitLab