Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

ardf16's avatar

AssertFalse - false test fail or what?

Hello, In test i have:

dd($post->subscribed == false); // returns true
$this->assertFalse($post->subscribed); // fails test ...

any ideas??

0 likes
2 replies
ardf16's avatar

Hi,

public function getSubscribedAttribute()
{
    return count($this->subscriptions->where('user_id', auth()->id() )) > 0;
}
dd($post->subscribed === false); // returns true

still have no idea...

Please or to participate in this conversation.