diff options
| author | Luke Dashjr <[email protected]> | 2012-03-25 17:25:10 -0400 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2012-04-06 12:53:37 -0400 |
| commit | fa2544e79faf75923766624acd638e3cbdb9be0d (patch) | |
| tree | 7785ea719ba3c922f5f691b6a7e17bae57c2971c /src/qt/test/test_main.cpp | |
| parent | Merge pull request #1033 from sipa/wait (diff) | |
| download | discoin-fa2544e79faf75923766624acd638e3cbdb9be0d.tar.xz discoin-fa2544e79faf75923766624acd638e3cbdb9be0d.zip | |
Bugfix: Replace "URL" with "URI" where we aren't actually working with URLs
Diffstat (limited to 'src/qt/test/test_main.cpp')
| -rw-r--r-- | src/qt/test/test_main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qt/test/test_main.cpp b/src/qt/test/test_main.cpp index 0a08eafa1..5b11e39ea 100644 --- a/src/qt/test/test_main.cpp +++ b/src/qt/test/test_main.cpp @@ -1,11 +1,11 @@ #include <QTest>
#include <QObject>
-#include "urltests.h"
+#include "uritests.h"
// This is all you need to run all the tests
int main(int argc, char *argv[])
{
- URLTests test1;
+ URITests test1;
QTest::qExec(&test1);
}
|