Skip to content

Commit

Permalink
Merge pull request #3290 from bmac/all-deprecation
Browse files Browse the repository at this point in the history
Rename `all` to `peekAll` in a test to fix a deprecation warning.
  • Loading branch information
bmac committed Jun 10, 2015
2 parents d4f6050 + 61f9f52 commit 144ae4f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ test("destroying the store correctly cleans everything up", function() {

var filterd = manager.createFilteredRecordArray(Person, function() { return true; });
var filterd2 = manager.createFilteredRecordArray(Person, function() { return true; });
var all = store.all('person');
var all = store.peekAll('person');
var adapterPopulated = manager.createAdapterPopulatedRecordArray(Person, query);

var filterdSummary = tap(filterd, 'willDestroy');
Expand Down

0 comments on commit 144ae4f

Please sign in to comment.