Skip to content

Commit 271d27c

Browse files
committed
bowling: Fix formatting
1 parent b585b68 commit 271d27c

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

exercises/practice/bowling/tests/bowling.rs

+5-3
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,8 @@ fn two_bonus_rolls_after_a_strike_in_the_last_frame_cannot_score_more_than_10_po
315315

316316
#[test]
317317
#[ignore]
318-
fn two_bonus_rolls_after_a_strike_in_the_last_frame_can_score_more_than_10_points_if_one_is_a_strike() {
318+
fn two_bonus_rolls_after_a_strike_in_the_last_frame_can_score_more_than_10_points_if_one_is_a_strike(
319+
) {
319320
let mut game = BowlingGame::new();
320321

321322
for _ in 0..18 {
@@ -330,7 +331,8 @@ fn two_bonus_rolls_after_a_strike_in_the_last_frame_can_score_more_than_10_point
330331

331332
#[test]
332333
#[ignore]
333-
fn the_second_bonus_rolls_after_a_strike_in_the_last_frame_cannot_be_a_strike_if_the_first_one_is_not_a_strike() {
334+
fn the_second_bonus_rolls_after_a_strike_in_the_last_frame_cannot_be_a_strike_if_the_first_one_is_not_a_strike(
335+
) {
334336
let mut game = BowlingGame::new();
335337

336338
for _ in 0..18 {
@@ -360,7 +362,7 @@ fn second_bonus_roll_after_a_strike_in_the_last_frame_cannot_score_more_than_10_
360362

361363
#[test]
362364
#[ignore]
363-
fn bonus_rolls_for_a_strike_in_the_last_frame_must_be_rolled_before_score_can_be_calculated() {
365+
fn bonus_rolls_for_a_strike_in_the_last_frame_must_be_rolled_before_score_can_be_calculated() {
364366
let mut game = BowlingGame::new();
365367

366368
for _ in 0..18 {

0 commit comments

Comments
 (0)