Skip to content

Commit

Permalink
fix; test broken from 3.8.x merge
Browse files Browse the repository at this point in the history
  • Loading branch information
vkarpov15 committed Mar 24, 2015
1 parent 0ffbf77 commit 174e1f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/model.populate.test.js
Expand Up @@ -2850,7 +2850,7 @@ describe('model: populate:', function(){
{ title: 'Pacific Rim', actors: ['Charlie Hunnam', 'Idris Elba'] },
{ title: 'Man of Steel', actors: ['Henry Cavill', 'Amy Adams'] }
];
Movie.create(movies, function(error, m1, m2, m3) {
Movie.create(movies[0], movies[1], movies[2], function(error, m1, m2, m3) {
assert.ifError(error);
Category.create({ movies: [m1._id, m2._id, m3._id] }, function(error) {
assert.ifError(error);
Expand Down

0 comments on commit 174e1f0

Please sign in to comment.