Skip to content

Commit

Permalink
Updated tests to handle new error returns
Browse files Browse the repository at this point in the history
  • Loading branch information
Sterling Long committed Aug 2, 2023
1 parent 7d2482c commit d23b3fb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/sign_api/validation_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -365,9 +365,9 @@ void main() {
final List errors = [
"Unsupported namespace key. test namespaces keys don't satisfy requiredNamespaces",
"Unsupported namespace key. test namespaces keys don't satisfy requiredNamespaces",
"Unsupported chains. test namespaces chains don't satisfy requiredNamespaces chains for $EVM_NAMESPACE",
"Unsupported methods. test namespaces methods don't satisfy requiredNamespaces methods for $EVM_NAMESPACE",
"Unsupported events. test namespaces events don't satisfy requiredNamespaces events for $EVM_NAMESPACE",
"Unsupported chains. test namespaces chains don't satisfy requiredNamespaces chains for $EVM_NAMESPACE. Requested: [eip155:1, eip155:42161], Supported: [eip155:1]",
"Unsupported methods. test namespaces methods don't satisfy requiredNamespaces methods for $EVM_NAMESPACE. Requested: [eth_sendTransaction, eth_signTransaction], Supported: [eth_invalid]",
"Unsupported events. test namespaces events don't satisfy requiredNamespaces events for $EVM_NAMESPACE. Requested: [chainChanged], Supported: [eth_event_invalid]",
];
for (int i = 0; i < nonconformingNamespaces.length; i++) {
expect(
Expand Down

0 comments on commit d23b3fb

Please sign in to comment.