Skip to content

Commit

Permalink
#72 Fix HasMetasTest::testGetMeta
Browse files Browse the repository at this point in the history
  • Loading branch information
dimitriBouteille committed Sep 28, 2024
1 parent 945d104 commit 2aa43d1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/WordPress/Concerns/HasMetasTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ public function testGetMeta(): void
$this->assertInstanceOf(AbstractMeta::class, $meta);
$this->assertEquals($createMeta->getId(), $meta->getId());
$this->assertEquals($createMeta->getValue(), $meta->getValue());
$this->assertEquals('author', $meta->getValue());
$this->assertEquals('Norman FOSTER', $meta->getValue());
$this->assertEquals('author', $meta->getKey());
}

/**
Expand Down

0 comments on commit 2aa43d1

Please sign in to comment.