Skip to content

Commit

Permalink
CI fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanlopezinc committed Nov 2, 2023
1 parent 3d0eb9a commit 26b169b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion tests/Feature/Import/ImportBookmarkFromChromeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public function testImportBookmarks(): void

$this->importBookmarkResponse([
'source' => 'chromeExportFile',
'html' => UploadedFile::fake()->createWithContent('file.html', file_get_contents(base_path('tests/stubs/imports/chromeExportFile.html'))),
'html' => UploadedFile::fake()->createWithContent('file.html', file_get_contents(base_path('tests/stubs/Imports/chromeExportFile.html'))),
])->assertStatus(Response::HTTP_PROCESSING);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public function testImportBookmarks(): void

Passport::actingAs($user = UserFactory::new()->create());

$content = file_get_contents(base_path('tests/stubs/imports/firefox.html'));
$content = file_get_contents(base_path('tests/stubs/Imports/firefox.html'));

$this->importBookmarkResponse([
'source' => 'firefoxFile',
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/Import/ImportBookmarksFromInstapaperTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public function testImportBookmarks(): void

$this->importBookmarkResponse([
'source' => 'instapaperFile',
'instapaper_html' => UploadedFile::fake()->createWithContent('file.html', file_get_contents(base_path('tests/stubs/imports/instapaper.html'))),
'instapaper_html' => UploadedFile::fake()->createWithContent('file.html', file_get_contents(base_path('tests/stubs/Imports/instapaper.html'))),
])->assertStatus(Response::HTTP_PROCESSING);

Bookmark::query()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function testWillImportBookmarks(): void

Passport::actingAs($user = UserFactory::new()->create());

$content = file_get_contents(base_path('tests/stubs/imports/pocketExportFile.html'));
$content = file_get_contents(base_path('tests/stubs/Imports/pocketExportFile.html'));

$this->importBookmarkResponse([
'source' => 'pocketExportFile',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public function testImportBookmarks(): void

$this->importBookmarkResponse([
'source' => 'safariExportFile',
'safari_html' => UploadedFile::fake()->createWithContent('file.html', file_get_contents(base_path('tests/stubs/imports/SafariExportFile.html'))),
'safari_html' => UploadedFile::fake()->createWithContent('file.html', file_get_contents(base_path('tests/stubs/Imports/SafariExportFile.html'))),
])->assertStatus(Response::HTTP_PROCESSING);
}
}

0 comments on commit 26b169b

Please sign in to comment.