Skip to content

Commit a2cc118

Browse files
committed
Add 2 more test cases
1 parent f388b5c commit a2cc118

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

tests/Logs/LogsAggregatorTest.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,17 @@ public static function messageFormattingDataProvider(): \Generator
6363
['value'],
6464
'Message with placeholders but incorrect number of values: %s, %s',
6565
];
66+
67+
yield [
68+
'Message with a percentage: 42%',
69+
[],
70+
'Message with a percentage: 42%',
71+
];
72+
73+
yield [
74+
'Message with a percentage: 42%',
75+
['value'],
76+
'Message with a percentage: 42%',
77+
];
6678
}
6779
}

0 commit comments

Comments
 (0)