diff options
Diffstat (limited to 'tests/Wallabag/ImportBundle/Controller')
-rw-r--r-- | tests/Wallabag/ImportBundle/Controller/BrowserControllerTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Wallabag/ImportBundle/Controller/BrowserControllerTest.php b/tests/Wallabag/ImportBundle/Controller/BrowserControllerTest.php index 8016227c..46c831f8 100644 --- a/tests/Wallabag/ImportBundle/Controller/BrowserControllerTest.php +++ b/tests/Wallabag/ImportBundle/Controller/BrowserControllerTest.php | |||
@@ -27,7 +27,7 @@ class BrowserControllerTest extends WallabagCoreTestCase | |||
27 | $crawler = $client->request('GET', '/import/browser'); | 27 | $crawler = $client->request('GET', '/import/browser'); |
28 | $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form(); | 28 | $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form(); |
29 | 29 | ||
30 | $file = new UploadedFile(__DIR__.'/../fixtures/Bookmarks', 'Bookmarks'); | 30 | $file = new UploadedFile(__DIR__.'/../fixtures/bookmarks.json', 'Bookmarks'); |
31 | 31 | ||
32 | $data = [ | 32 | $data = [ |
33 | 'upload_import_file[file]' => $file, | 33 | 'upload_import_file[file]' => $file, |