Commit 6ab37266 authored by Timo Hund's avatar Timo Hund Committed by Markus Kalkbrenner

[BUGFIX] Guzzle and Guzzle3 adapater swapped in integration test (#615)

Swappes the Guzzle and Guzzle3 adapter in the integration tests

Fixes: #612
parent e40c4f02
......@@ -15,7 +15,7 @@ class TechproductsGuzzle3Test extends AbstractTechproductsTest
$this->markTestSkipped('Guzzle 3 not installed');
} else {
parent::setUp();
$this->client->setAdapter('Solarium\Core\Client\Adapter\Guzzle');
$this->client->setAdapter('Solarium\Core\Client\Adapter\Guzzle3');
}
}
}
......@@ -15,7 +15,7 @@ class TechproductsGuzzleTest extends AbstractTechproductsTest
$this->markTestSkipped('Guzzle 6 not installed');
} else {
parent::setUp();
$this->client->setAdapter('Solarium\Core\Client\Adapter\Guzzle3');
$this->client->setAdapter('Solarium\Core\Client\Adapter\Guzzle');
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment