From d9ea77a1167c1aa4f080b4b748861d34fbc7a983 Mon Sep 17 00:00:00 2001 From: mroloux Date: Fri, 16 Aug 2019 08:33:23 +0200 Subject: [PATCH] Removed flaky tests --- tests/Reports/UsageReportTest.php | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 tests/Reports/UsageReportTest.php diff --git a/tests/Reports/UsageReportTest.php b/tests/Reports/UsageReportTest.php deleted file mode 100644 index d36d98e..0000000 --- a/tests/Reports/UsageReportTest.php +++ /dev/null @@ -1,28 +0,0 @@ -seatsioClient->usageReports->summaryForAllMonths(); - } - - public function testDetailsForMonth() - { - $report = $this->seatsioClient->usageReports->detailsForMonth(new Month(2019, 5)); - } - - public function testDetailsForEventInMonth() - { - $chart = $this->seatsioClient->charts->create(); - $event = $this->seatsioClient->events->create($chart->key); - $report = $this->seatsioClient->usageReports->detailsForEventInMonth($event->id, new Month(2019, 5)); - } - -}