Skip to content

Commit

Permalink
Fix tests for our local changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ryelle committed Mar 16, 2020
1 parent 3ce6878 commit e88d0bc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public function rendersResetPasswordFormIfFormIsNotSubmitted()
$response = $client->getResponse();

$this->assertResponseStatusCode(HttpFoundation\Response::HTTP_OK, $response);
$this->assertResponseBodyContains('<h2 class="headline">Reset My Password</h2>', $response);
$this->assertResponseBodyContains('<h2 class="page-title">Reset My Password</h2>', $response);
$this->assertResponseBodyContains('<button type="submit" class="btn btn-success" >Change my password</button>', $response);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ public function rendersResetPasswordFormIfFormIsInvalid()
$response = $this->post('/updatepassword');

$this->assertResponseIsSuccessful($response);
$this->assertResponseBodyContains('<h2 class="headline">Reset My Password</h2>', $response);
$this->assertResponseBodyContains('<h2 class="page-title">Reset My Password</h2>', $response);
}
}

0 comments on commit e88d0bc

Please sign in to comment.