Skip to content

Commit

Permalink
Fix mistake.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Aug 15, 2018
1 parent 5f5be0a commit 89def31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TestSuite/IntegrationTestTrait.php
Expand Up @@ -866,7 +866,7 @@ public function assertRedirectContains($url, $message = '')
public function assertRedirectNotContains($url, $message = '')
{
$this->assertThat(null, new HeaderSet($this->_response, 'Location'), $message);
$this->assertThat(null, new HeaderNotContains($this->_response, 'Location'), $message);
$this->assertThat($url, new HeaderNotContains($this->_response, 'Location'), $message);
}

/**
Expand Down

0 comments on commit 89def31

Please sign in to comment.