summaryrefslogtreecommitdiff
path: root/spec/javascripts/registry/stores/mock_data.js
diff options
context:
space:
mode:
Diffstat (limited to 'spec/javascripts/registry/stores/mock_data.js')
-rw-r--r--spec/javascripts/registry/stores/mock_data.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/javascripts/registry/stores/mock_data.js b/spec/javascripts/registry/stores/mock_data.js
index 80f7c51426a..07c51503b7f 100644
--- a/spec/javascripts/registry/stores/mock_data.js
+++ b/spec/javascripts/registry/stores/mock_data.js
@@ -9,14 +9,14 @@ export const reposServerResponse = [
destroy_path: 'path',
id: '123',
location: 'location',
- name: 'foo',
+ path: 'foo',
tags_path: 'tags_path',
},
{
destroy_path: 'path_',
id: '456',
location: 'location_',
- name: 'bar',
+ path: 'bar',
tags_path: 'tags_path_',
},
];
@@ -50,7 +50,7 @@ export const parsedReposServerResponse = [
isLoading: false,
list: [],
location: reposServerResponse[0].location,
- name: reposServerResponse[0].name,
+ name: reposServerResponse[0].path,
tagsPath: reposServerResponse[0].tags_path,
},
{
@@ -60,7 +60,7 @@ export const parsedReposServerResponse = [
isLoading: false,
list: [],
location: reposServerResponse[1].location,
- name: reposServerResponse[1].name,
+ name: reposServerResponse[1].path,
tagsPath: reposServerResponse[1].tags_path,
},
];