mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-24 19:25:52 +00:00
update test
This commit is contained in:
parent
a01dce1c72
commit
1a094d3745
1 changed files with 5 additions and 1 deletions
|
@ -270,7 +270,11 @@ void main() {
|
|||
final service = NodeService(secureStorageInterface: fakeStore);
|
||||
final currentLength = service.nodes.length;
|
||||
|
||||
final editedNode = nodeA.copyWith(name: "Some new kind of name");
|
||||
final editedNode = nodeA.copyWith(
|
||||
name: "Some new kind of name",
|
||||
loginName: null,
|
||||
trusted: null,
|
||||
);
|
||||
|
||||
await service.edit(editedNode, "123456", true);
|
||||
|
||||
|
|
Loading…
Reference in a new issue