Skip to content

Commit

Permalink
fix refs
Browse files Browse the repository at this point in the history
  • Loading branch information
imanghafoori1 committed Jun 25, 2024
1 parent 99b59ea commit 6255bed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
5 changes: 0 additions & 5 deletions tests/OffsetLimitTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@
class OffsetUser extends Model
{
protected $table = 'users';

public function comments()
{
return $this->hasMany(HasManyComment::class, 'user_id');
}
}

class OffsetLimitTest extends TestCase
Expand Down
4 changes: 2 additions & 2 deletions tests/Unit/FakeDbTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function fakeDbAliasColumns()
'comments' => ['cc' => 'aValue'],
];

$this->assertEquals($resultingItem, FakeDb::aliasColumns($aliases, $item, $table));
$this->assertEquals($resultingItem, FakeDB::aliasColumns($aliases, $item, $table));
}

/**
Expand Down Expand Up @@ -66,7 +66,7 @@ public function fakeDbAliasColumns2()
"comments" => ["cc" => "aValue"],
];

$this->assertEquals($resultingItem, FakeDb::aliasColumns($aliases, $item, $table));
$this->assertEquals($resultingItem, FakeDB::aliasColumns($aliases, $item, $table));
}

/**
Expand Down

0 comments on commit 6255bed

Please sign in to comment.