Skip to content

Commit

Permalink
update Guzzle
Browse files Browse the repository at this point in the history
  • Loading branch information
iranianpep committed Jan 8, 2018
1 parent 3327790 commit 86f4cf4
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 10 deletions.
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -9,7 +9,7 @@
"require": {
"php": ">=7",
"nlp-tools/nlp-tools": "^0.1.3",
"guzzlehttp/guzzle": "6.2.*",
"guzzlehttp/guzzle": "6.3.*",
"monolog/monolog": "^1.22"
},
"require-dev": {
Expand Down
17 changes: 10 additions & 7 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions tests/Botonomous/BlackListTest.php
Expand Up @@ -268,6 +268,9 @@ public function testIsBlackListedUsername()
$this->assertEquals(true, $blacklist->isBlackListed());
}

/**
* @throws \Exception
*/
public function testIsBlackListedFalse()
{
$blacklist = $this->getBlackList();
Expand Down
2 changes: 1 addition & 1 deletion tests/Botonomous/EventTest.php
Expand Up @@ -24,7 +24,7 @@ public function testGetBotId()
}

/**
* Test isDirectMessageEmpty.
* @throws \Exception
*/
public function testIsDirectMessageEmpty()
{
Expand Down
6 changes: 6 additions & 0 deletions tests/Botonomous/WhiteListTest.php
Expand Up @@ -202,6 +202,9 @@ public function testGetSlackUserInfoEmptyRequest()
$this->assertEmpty($whitelist->getSlackUserInfo());
}

/**
* @throws \Exception
*/
public function testGetSlackUserInfoNotFound()
{
$whitelist = $this->getWhiteList();
Expand Down Expand Up @@ -235,6 +238,9 @@ public function testIsWhiteListed()
$this->assertEquals(true, $whitelist->isWhiteListed());
}

/**
* @throws \Exception
*/
public function testIsWhiteListedFalse()
{
$whitelist = $this->getWhiteList();
Expand Down
2 changes: 1 addition & 1 deletion tests/Botonomous/client/ApiClientTest.php
Expand Up @@ -219,7 +219,7 @@ public function testChatPostMessage()
}

/**
* Test usersList.
* @throws \Exception
*/
public function testUsersListEmpty()
{
Expand Down

0 comments on commit 86f4cf4

Please sign in to comment.