Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
bdemann committed May 23, 2024
1 parent 04e0693 commit b2958b3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions examples/fs/test/tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export function getTests(canisterId: string): Test[] {
);
const responseText = await response.text();

return testEquality(responseText, 'write file');
return testEquality(responseText, 'write file sync');
} catch (err: any) {
return error(err);
}
Expand Down Expand Up @@ -93,7 +93,7 @@ export function getTests(canisterId: string): Test[] {

return testEquality(
responseText,
'Directory just_public created'
'Directory public_sync created'
);
} catch (err: any) {
return error(err);
Expand Down Expand Up @@ -130,7 +130,7 @@ export function getTests(canisterId: string): Test[] {
);
const responseText = await response.text();

return testEquality(responseText, 'false');
return testEquality(responseText, 'true');
} catch (err: any) {
return error(err);
}
Expand All @@ -145,7 +145,7 @@ export function getTests(canisterId: string): Test[] {
);
const responseText = await response.text();

return testEquality(responseText, 'false');
return testEquality(responseText, 'true');
} catch (err: any) {
return error(err);
}
Expand All @@ -165,7 +165,7 @@ export function getTests(canisterId: string): Test[] {

return testEquality(
responseText,
'File write-file.txt deleted'
'File write-file-sync.txt deleted'
);
} catch (err: any) {
return error(err);
Expand Down Expand Up @@ -207,7 +207,7 @@ export function getTests(canisterId: string): Test[] {

return testEquality(
responseText,
'Directory just_public deleted'
'Directory public_sync deleted'
);
} catch (err: any) {
return error(err);
Expand Down

0 comments on commit b2958b3

Please sign in to comment.