From: Robin Gustafsson <robin@rgson.se>
Date: Sat, 14 Jan 2023 22:32:07 +0100
Subject: Remove exit call in unit tests

The exit call breaks the test suite by exiting PHPUnit. These calls are
presumably just unintentional leftovers of development.

Forwarded: https://github.com/briannesbitt/Carbon/pull/2753
---
 tests/CarbonInterval/RoundingTest.php | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/tests/CarbonInterval/RoundingTest.php b/tests/CarbonInterval/RoundingTest.php
index 508e497..de4cb50 100644
--- a/tests/CarbonInterval/RoundingTest.php
+++ b/tests/CarbonInterval/RoundingTest.php
@@ -67,10 +67,6 @@ class RoundingTest extends AbstractTestCase
 
     public function testTotalAfterRound()
     {
-        var_dump(CarbonInterval::make('43h3m6s')->hours);
-        var_dump(CarbonInterval::make('43h3m6s')->cascade()->hours);
-        var_dump(CarbonInterval::make('43h3m6s')->roundMinutes()->hours);
-        exit;
         $this->assertSame(43, CarbonInterval::make('43h3m6s')->roundMinutes()->hours);
         $this->assertSame(43.04, CarbonInterval::make('43h3m6s')->roundMinutes()->totalHours);
     }
