Skip to content
Snippets Groups Projects
Commit 8095fa5a authored by ManosAngelidis's avatar ManosAngelidis
Browse files

[NRRPLT-8250] Changed double quotes to single

parent 9cde7387
No related branches found
No related tags found
No related merge requests found
......@@ -58,6 +58,6 @@ export const handlers = [
}),
rest.post(`${config.api.proxy.url}${endpoints.proxy.identity.url}${endpoints.proxy.identity.gdpr.url}`,
(req, res, ctx) => {
return res(ctx.json({"status":"success"}));
return res(ctx.json({'status':'success'}));
})
];
\ No newline at end of file
......@@ -74,9 +74,9 @@ test('can retrieve cluster reservations', async () => {
});
test('can retrieve false gdpr status', async () => {
expect(await NrpUserService.instance.getGdpr()).toEqual({"gdpr": false});
expect(await NrpUserService.instance.getGdpr()).toEqual({'gdpr': false});
});
test('can set gdpr status', async () => {
expect(await NrpUserService.instance.setGdpr()).toEqual({"status":"success"});
expect(await NrpUserService.instance.setGdpr()).toEqual({'status':'success'});
});
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment