We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e129f69 commit 3211ac7Copy full SHA for 3211ac7
2 files changed
tests/Feature/CurationSetItemsTest.php
@@ -42,7 +42,9 @@ protected function setUp(): void
42
protected function tearDown(): void
43
{
44
try {
45
- $this->curationSets['test-curation-set-items']->delete();
+ if ($this->curationSets !== null) {
46
+ $this->curationSets['test-curation-set-items']->delete();
47
+ }
48
} catch (Exception $e) {
49
// Ignore cleanup errors
50
}
tests/Feature/CurationSetsTest.php
@@ -43,7 +43,9 @@ protected function setUp(): void
- $this->curationSets['test-curation-set']->delete();
+ $this->curationSets['test-curation-set']->delete();
51
0 commit comments