mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-12-22 11:29:23 +00:00
fix a test
This commit is contained in:
parent
16b9254761
commit
c913b05fc9
1 changed files with 3 additions and 3 deletions
|
@ -95,7 +95,7 @@ void main() {
|
|||
test("build a uri string with empty params", () {
|
||||
expect(
|
||||
AddressUtils.buildUriString(
|
||||
Firo(CryptoCurrencyNetwork.main), firoAddress, {}),
|
||||
Firo(CryptoCurrencyNetwork.main).uriScheme, firoAddress, {}),
|
||||
"firo:$firoAddress",
|
||||
);
|
||||
});
|
||||
|
@ -103,7 +103,7 @@ void main() {
|
|||
test("build a uri string with one param", () {
|
||||
expect(
|
||||
AddressUtils.buildUriString(
|
||||
Firo(CryptoCurrencyNetwork.main),
|
||||
Firo(CryptoCurrencyNetwork.main).uriScheme,
|
||||
firoAddress,
|
||||
{"amount": "10.0123"},
|
||||
),
|
||||
|
@ -114,7 +114,7 @@ void main() {
|
|||
test("build a uri string with some params", () {
|
||||
expect(
|
||||
AddressUtils.buildUriString(
|
||||
Firo(CryptoCurrencyNetwork.main),
|
||||
Firo(CryptoCurrencyNetwork.main).uriScheme,
|
||||
firoAddress,
|
||||
{"amount": "10.0123", "message": "Some kind of message!"},
|
||||
),
|
||||
|
|
Loading…
Reference in a new issue