diff options
| author | Matt Corallo <[email protected]> | 2012-08-07 16:43:58 +0200 |
|---|---|---|
| committer | Matt Corallo <[email protected]> | 2012-08-07 19:36:59 +0200 |
| commit | 319236afa221b571b372d3a1eee4a635f9b53976 (patch) | |
| tree | 833799b7288c95e99b050b759a7707ab56ec28b1 /src/qt/test/uritests.cpp | |
| parent | Return !0 when qt tests fail. (diff) | |
| download | discoin-319236afa221b571b372d3a1eee4a635f9b53976.tar.xz discoin-319236afa221b571b372d3a1eee4a635f9b53976.zip | |
Fix Win32 compiling of qt/test/uritests.cpp
Diffstat (limited to 'src/qt/test/uritests.cpp')
| -rw-r--r-- | src/qt/test/uritests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/test/uritests.cpp b/src/qt/test/uritests.cpp index a281c39ca..4662f5ed3 100644 --- a/src/qt/test/uritests.cpp +++ b/src/qt/test/uritests.cpp @@ -47,7 +47,7 @@ void URITests::uriTests() uri.setUrl(QString("bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?amount=100&label=Wikipedia Example")); QVERIFY(GUIUtil::parseBitcoinURI(uri, &rv)); QVERIFY(rv.address == QString("175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W")); - QVERIFY(rv.amount == 10000000000); + QVERIFY(rv.amount == 10000000000LL); QVERIFY(rv.label == QString("Wikipedia Example")); uri.setUrl(QString("bitcoin:175tWpb8K1S7NmH4Zx6rewF9WQrcZv245W?message=Wikipedia Example Address")); |