1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-05 03:30:05 +00:00

chore: cleanup

This commit is contained in:
Mihajlo Medjedovic
2021-03-02 13:13:03 +01:00
parent 8714ecdde8
commit d517e79ec0
3 changed files with 4 additions and 4 deletions

View File

@@ -60,7 +60,7 @@ export const basicTests = (
test: async () => {
await adapter.logOut();
return await adapter.request("/Public/app/common/sendArr", stringData, null, () => {
return await adapter.request("common/sendArr", stringData, null, () => {
adapter.logIn(userName, password);
});
},
@@ -77,7 +77,7 @@ export const basicTests = (
debug: true
}
return await adapter.request("/Public/app/common/sendArr", stringData, config)
return await adapter.request("common/sendArr", stringData, config)
},
assertion: (response: any) => {
return response.table1[0][0] === stringData.table1[0].col1;