Default topic description to an empty string instead of null

Not using nulls makes things more type safe.
This commit is contained in:
Steven Nguyen
2024-01-11 02:06:56 +00:00
parent 07b6ee58fe
commit 74a7ffbf7a
2 changed files with 2 additions and 4 deletions
@@ -245,6 +245,7 @@ trait MessagingBase
]);
$this->assertEquals(201, $response['headers']['status-code']);
$this->assertEquals('my-app', $response['body']['name']);
$this->assertEquals('', $response['body']['description']);
return $response['body'];
}