Skip to content

Commit

Permalink
use angulary.copy() should be angular.copy()
Browse files Browse the repository at this point in the history
  • Loading branch information
kaladay committed Aug 16, 2018
1 parent 489051a commit 62bacaa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/mocks/repo/mockIdeaRepo.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ angular.module('mock.ideaRepo', []).service('IdeaRepo', function ($q) {
var found;
for (var i in IdeaRepo.list) {
if (IdeaRepo.list[i].id === id) {
found = angulary.copy(IdeaRepo.list[i]);
found = angular.copy(IdeaRepo.list[i]);
break;
}
}
Expand Down
2 changes: 1 addition & 1 deletion tests/mocks/repo/mockNoteRepo.js
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ angular.module('mock.noteRepo', []).service('NoteRepo', function ($q) {
var found;
for (var i in NoteRepo.list) {
if (NoteRepo.list[i].id === id) {
found = angulary.copy(NoteRepo.list[i]);
found = angular.copy(NoteRepo.list[i]);
break;
}
}
Expand Down

0 comments on commit 62bacaa

Please sign in to comment.