Skip to content

Commit

Permalink
as
Browse files Browse the repository at this point in the history
  • Loading branch information
dawlib committed May 25, 2021
1 parent 21a30b2 commit 3e4f509
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions test/FilterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ public function tearDown(): void

public function testApprove()
{
$auth = new Castle_Filter();
$auth->save();
$filter = new Castle_Filter();
$filter->save();
$this->assertRequest('post', '/filter');
}
}
4 changes: 2 additions & 2 deletions test/LogTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ public function tearDown(): void

public function testApprove()
{
$auth = new Castle_Log();
$auth->save();
$log = new Castle_Log();
$log->save();
$this->assertRequest('post', 'log');
}
}
4 changes: 2 additions & 2 deletions test/RiskTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ public function tearDown(): void

public function testApprove()
{
$auth = new Castle_Risk();
$auth->save();
$risk = new Castle_Risk();
$risk->save();
$this->assertRequest('post', '/risk');
}
}

0 comments on commit 3e4f509

Please sign in to comment.