mirror of
https://github.com/UltimMC/Launcher.git
synced 2025-12-23 20:12:34 +00:00
NOISSUE dissolve util library
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
#include <QTest>
|
||||
#include "TestUtil.h"
|
||||
|
||||
#include "pathutils.h"
|
||||
#include <FileSystem.h>
|
||||
|
||||
class PathUtilsTest : public QObject
|
||||
{
|
||||
@@ -37,7 +36,7 @@ slots:
|
||||
QFETCH(QString, path1);
|
||||
QFETCH(QString, path2);
|
||||
|
||||
QCOMPARE(PathCombine(path1, path2), result);
|
||||
QCOMPARE(FS::PathCombine(path1, path2), result);
|
||||
}
|
||||
|
||||
void test_PathCombine2_data()
|
||||
@@ -65,7 +64,7 @@ slots:
|
||||
QFETCH(QString, path2);
|
||||
QFETCH(QString, path3);
|
||||
|
||||
QCOMPARE(PathCombine(path1, path2, path3), result);
|
||||
QCOMPARE(FS::PathCombine(path1, path2, path3), result);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user