Skip to content

Commit c8bd9fd

Browse files
committed
style(playlist): renames variable
1 parent 85a463f commit c8bd9fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

public/app/features/playlist/specs/playlist-edit-ctrl-specs.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import helpers from 'test/specs/helpers';
55
describe('PlaylistEditCtrl', function() {
66
var ctx = new helpers.ControllerTestContext();
77

8-
var dashboards = [
8+
var searchResult = [
99
{
1010
id: 2,
1111
title: 'dashboard: 2'
@@ -19,7 +19,7 @@ describe('PlaylistEditCtrl', function() {
1919
var playlistSrv = {};
2020
var backendSrv = {
2121
search: (query) => {
22-
return ctx.$q.when(dashboards);
22+
return ctx.$q.when(searchResult);
2323
}
2424
};
2525

0 commit comments

Comments
 (0)