record daily traffic instead of monthly

This commit is contained in:
Čarodej
2021-11-30 17:57:00 +01:00
parent ca257ae113
commit de047f7dd8
19 changed files with 69 additions and 86 deletions

View File

@@ -1,5 +1,4 @@
<?php
namespace Tests\Domain\Teams;
use Tests\TestCase;
@@ -29,7 +28,8 @@ class TeamLimitsTest extends TestCase
->count(5)
->create();
$members->each(fn($member) => TeamFolderMember::factory()
$members->each(
fn ($member) => TeamFolderMember::factory()
->create([
'parent_id' => $user->folders[0]->id,
'user_id' => $member->id,
@@ -84,4 +84,4 @@ class TeamLimitsTest extends TestCase
])
->assertCreated();
}
}
}