mirror of
https://github.com/nasa/openmct.git
synced 2025-02-21 09:52:04 +00:00
[Search] Fixed file paths
This commit is contained in:
parent
d9a1b9d530
commit
5711b2b241
@ -25,7 +25,7 @@
|
|||||||
* SearchSpec. Created by shale on 07/31/2015.
|
* SearchSpec. Created by shale on 07/31/2015.
|
||||||
*/
|
*/
|
||||||
define(
|
define(
|
||||||
["../../src/providers/ElasticSearchProvider"],
|
["../src/ElasticSearchProvider"],
|
||||||
function (ElasticSearchProvider) {
|
function (ElasticSearchProvider) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
@ -68,7 +68,7 @@ define(
|
|||||||
[ "getId", "getModel" ]
|
[ "getId", "getModel" ]
|
||||||
);
|
);
|
||||||
|
|
||||||
provider = new ElasticsearchSearchProvider(mockHttp, mockObjectService, "");
|
provider = new ElasticSearchProvider(mockHttp, mockObjectService, "");
|
||||||
provider.query(' test "query" ', 0, undefined, 1000);
|
provider.query(' test "query" ', 0, undefined, 1000);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
* SearchSpec. Created by shale on 07/31/2015.
|
* SearchSpec. Created by shale on 07/31/2015.
|
||||||
*/
|
*/
|
||||||
define(
|
define(
|
||||||
["../../src/providers/GenericSearchProvider"],
|
["../../src/services/GenericSearchProvider"],
|
||||||
function (GenericSearchProvider) {
|
function (GenericSearchProvider) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
|
@ -31,7 +31,7 @@ define(
|
|||||||
|
|
||||||
describe("The generic search worker ", function () {
|
describe("The generic search worker ", function () {
|
||||||
// If this test fails, make sure this path is correct
|
// If this test fails, make sure this path is correct
|
||||||
var worker = new Worker('platform/search/src/workers/GenericSearchWorker.js'),
|
var worker = new Worker('platform/search/src/services/GenericSearchWorker.js'),
|
||||||
numObjects = 5;
|
numObjects = 5;
|
||||||
|
|
||||||
beforeEach(function () {
|
beforeEach(function () {
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
* SearchSpec. Created by shale on 07/31/2015.
|
* SearchSpec. Created by shale on 07/31/2015.
|
||||||
*/
|
*/
|
||||||
define(
|
define(
|
||||||
["../src/SearchAggregator"],
|
["../../src/services/SearchAggregator"],
|
||||||
function (SearchAggregator) {
|
function (SearchAggregator) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user