File tree Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change 6
6
use Illuminate \Database \Eloquent \SoftDeletes ;
7
7
use Illuminate \Foundation \Auth \User ;
8
8
use Illuminate \Support \Facades \Auth ;
9
- use Illuminate \Support \Facades \Log ;
10
9
use LdapRecord \Laravel \Auth \AuthenticatesWithLdap ;
11
10
use LdapRecord \Laravel \Auth \HasLdapUser ;
12
11
use LdapRecord \Laravel \Auth \LdapAuthenticatable ;
@@ -72,8 +71,6 @@ public function test_users_are_imported_into_the_database()
72
71
]),
73
72
]);
74
73
75
- Log::shouldReceive ('log ' )->times (6 );
76
-
77
74
$ repo = m::mock (LdapUserRepository::class, function ($ repo ) use ($ users ) {
78
75
$ query = m::mock (Builder::class);
79
76
$ query ->shouldReceive ('paginate ' )->once ()->andReturn ($ users );
@@ -147,8 +144,6 @@ public function test_users_are_imported_into_the_database_via_chunk()
147
144
]),
148
145
]);
149
146
150
- Log::shouldReceive ('log ' )->times (6 );
151
-
152
147
$ repo = m::mock (LdapUserRepository::class, function ($ repo ) use ($ users ) {
153
148
$ query = m::mock (Builder::class);
154
149
@@ -190,8 +185,6 @@ public function test_users_are_not_imported_into_the_database_via_chunk_when_min
190
185
]),
191
186
]);
192
187
193
- Log::shouldReceive ('log ' )->times (6 );
194
-
195
188
$ repo = m::mock (LdapUserRepository::class, function ($ repo ) use ($ users ) {
196
189
$ query = m::mock (Builder::class);
197
190
You can’t perform that action at this time.
0 commit comments