Bugfix: Replace "URL" with "URI" where we aren't actually working with URLs

This commit is contained in:
Luke Dashjr
2012-03-25 17:25:10 -04:00
parent 9362da78b0
commit fa2544e79f
15 changed files with 87 additions and 84 deletions

View File

@@ -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);
}