Skip to content

Commit 2c2289b

Browse files
committed
Remove obsolete test
Well, it's not *really* obsolete, but by now, no one should be using the method in question the wrong way anymore. AT LEAST THAT'S WHAT I HOPE FOR THEM!
1 parent b3ba6ad commit 2c2289b

File tree

1 file changed

+0
-20
lines changed

1 file changed

+0
-20
lines changed

tests/FirebaseProjectManagerTest.php

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -331,24 +331,4 @@ public function it_uses_the_laravel_cache(): void
331331

332332
$this->assertInstanceOf(\Illuminate\Contracts\Cache\Repository::class, $property->getValue($factory));
333333
}
334-
335-
/**
336-
* @test
337-
*/
338-
public function enabling_debug_with_a_boolean_triggers_a_deprecation(): void
339-
{
340-
341-
if (version_compare($this->app->version(), '8.65.0', '>=')) {
342-
self::markTestSkipped('');
343-
}
344-
345-
$this->expectException(\Throwable::class);
346-
$this->expectExceptionMessageMatches('/deprecated/');
347-
348-
$projectName = $this->app->config->get('firebase.default');
349-
350-
$this->app->config->set('firebase.projects.'.$projectName.'.debug', true);
351-
352-
$this->factoryForProject($projectName);
353-
}
354334
}

0 commit comments

Comments
 (0)