mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-20 02:22:43 -05:00
rbutil: Fix unit test.
Change-Id: I0d1a33190d6590687d9e6eadd86a7ab8d8f877df
This commit is contained in:
parent
1bc68d5ad7
commit
7d1078a9d5
1 changed files with 1 additions and 1 deletions
|
|
@ -93,7 +93,7 @@ void TestServerInfo::testMain()
|
||||||
|
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
for(i = 0; i < sizeof(testdata) / sizeof(struct testvector); i++) {
|
for(i = 0; i < sizeof(testdata) / sizeof(struct testvector); i++) {
|
||||||
QString result = ServerInfo::platformValue(testdata[i].target, testdata[i].entry).toString();
|
QString result = ServerInfo::platformValue(testdata[i].entry, testdata[i].target).toString();
|
||||||
QCOMPARE(result, QString(testdata[i].expected));
|
QCOMPARE(result, QString(testdata[i].expected));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue