Skip to content

Commit

Permalink
Merge branch 'main' of github.com:demergent-labs/azle into nestjs
Browse files Browse the repository at this point in the history
  • Loading branch information
lastmjs committed Apr 22, 2024
2 parents a4efa72 + 3b94a2f commit 10e7ea0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/large_files/test/tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export function getTests(canisterId: string): Test[] {
} catch (err: any) {
return {
Ok: err.message.includes(
'Not Authorized: must be a controller to call this method'
'Not Authorized: only controllers of this canister may call this method'
)
};
}
Expand All @@ -62,7 +62,7 @@ export function getTests(canisterId: string): Test[] {
} catch (err: any) {
return {
Ok: err.message.includes(
'Not Authorized: must be a controller to call this method'
'Not Authorized: only controllers of this canister may call this method'
)
};
}
Expand All @@ -81,7 +81,7 @@ export function getTests(canisterId: string): Test[] {
} catch (err: any) {
return {
Ok: err.message.includes(
'Not Authorized: must be a controller to call this method'
'Not Authorized: only controllers of this canister may call this method'
)
};
}
Expand All @@ -100,7 +100,7 @@ export function getTests(canisterId: string): Test[] {
} catch (err: any) {
return {
Ok: err.message.includes(
'Not Authorized: must be a controller to call this method'
'Not Authorized: only controllers of this canister may call this method'
)
};
}
Expand Down

0 comments on commit 10e7ea0

Please sign in to comment.