Skip to content

Commit

Permalink
Don't use "store:application" for backwards compat.
Browse files Browse the repository at this point in the history
"store:main" as the name for the store in the resolver is deprecated as of
ember-data 1.0-beta19 and replaced with "store:application". That's an issue
to address later. For now, we want these tests to run with older ember-datas.
  • Loading branch information
rsutphin committed Jun 8, 2015
1 parent fdae815 commit 5e79a11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/adapters/pouch-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function adapter() {
}

function store() {
return App.__container__.lookup('store:application');
return App.__container__.lookup('store:main');
}

test('can find all', function (assert) {
Expand Down

0 comments on commit 5e79a11

Please sign in to comment.