diff --git a/.travis.yml b/.travis.yml
index debc010..91988bd 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -11,7 +11,7 @@ before_script:
- php artisan key:generate
script:
- - vendor/bin/phpunit
+ - vendor/bin/phpunit --coverage-clover build/logs/clover.xml
after_success:
- vendor/bin/php-coveralls -v --exclude-no-stmt
diff --git a/phpunit.xml b/phpunit.xml
index c32237e..075c186 100644
--- a/phpunit.xml
+++ b/phpunit.xml
@@ -20,23 +20,14 @@
+
+
-
+
-
-
-
-
-
- 15
-
-
-
-
-
diff --git a/tests/CreatesApplication.php b/tests/CreatesApplication.php
index 23d8a66..00af94d 100644
--- a/tests/CreatesApplication.php
+++ b/tests/CreatesApplication.php
@@ -23,7 +23,6 @@ trait CreatesApplication
$app = require __DIR__.'/../bootstrap/app.php';
$app->make(Kernel::class)->bootstrap();
- \Hash::setRounds(5);
return $app;
}