Skip to content

Commit

Permalink
fix lints
Browse files Browse the repository at this point in the history
  • Loading branch information
stevesea committed Nov 12, 2024
1 parent a68d7eb commit 1bb68d8
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions test/dart_dice_parser_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -658,7 +658,9 @@ void main() {
test('toString', () {
// mocked responses should return rolls of 6, 2, 1, 5
final dice = DiceExpression.create(
'(4d(3+3)! + (2+2)d6) #cs #cf #s #f', seededRandom);
'(4d(3+3)! + (2+2)d6) #cs #cf #s #f',
seededRandom,
);
final out = dice.roll().toString();
expect(
out,
Expand All @@ -670,7 +672,9 @@ void main() {
test('toStringPretty', () {
// mocked responses should return rolls of 6, 2, 1, 5
final dice = DiceExpression.create(
'(4d(3+3)! + (2+2)d6) #cs #cf #s #f', seededRandom);
'(4d(3+3)! + (2+2)d6) #cs #cf #s #f',
seededRandom,
);
final out = dice.roll().toStringPretty();
expect(
out,
Expand Down

0 comments on commit 1bb68d8

Please sign in to comment.