@@ -12,7 +12,7 @@ namespace pboman3::io::test {
12
12
const PboNode* file = root.createHierarchy (PboPath (" e1\t /e2\t /e3\t .txt" ));
13
13
14
14
const QString path = fs.allocatePath (file);
15
- const QString expected = dir.path () + " /e1%09 /e2%09 /e3%09 .txt" ;
15
+ const QString expected = dir.path () + " /e1%9 /e2%9 /e3%9 .txt" ;
16
16
17
17
ASSERT_EQ (expected, path);
18
18
@@ -29,7 +29,7 @@ namespace pboman3::io::test {
29
29
const PboNode* file = f1.createHierarchy (PboPath (" e1\t /e2\t /e3\t .txt" ));
30
30
31
31
const QString path = fs.allocatePath (&f1, file);
32
- const QString expected = dir.path () + " /e1%09 /e2%09 /e3%09 .txt" ;
32
+ const QString expected = dir.path () + " /e1%9 /e2%9 /e3%9 .txt" ;
33
33
34
34
ASSERT_EQ (expected, path);
35
35
@@ -55,8 +55,8 @@ namespace pboman3::io::test {
55
55
const PboNode* file = root.createHierarchy (PboPath (" e1\t /e2\t /e3\t .txt" ));
56
56
57
57
const QString path = fs.composeAbsolutePath (file);
58
- const QString expected = dir.path () + QDir::separator () + " e1%09 " + QDir::separator () + " e2%09 " + QDir::separator () +
59
- " e3%09 .txt" ;
58
+ const QString expected = dir.path () + QDir::separator () + " e1%9 " + QDir::separator () + " e2%9 " + QDir::separator () +
59
+ " e3%9 .txt" ;
60
60
61
61
ASSERT_EQ (expected, path);
62
62
@@ -72,7 +72,7 @@ namespace pboman3::io::test {
72
72
const PboNode* file = root.createHierarchy (PboPath (" e1\t /e2\t /e3\t .txt" ));
73
73
74
74
const QString path = fs.composeRelativePath (file);
75
- const QString expected = QString (" e1%09 " ) + QDir::separator () + " e2%09 " + QDir::separator () + " e3%09 .txt" ;
75
+ const QString expected = QString (" e1%9 " ) + QDir::separator () + " e2%9 " + QDir::separator () + " e3%9 .txt" ;
76
76
77
77
ASSERT_EQ (expected, path);
78
78
}
0 commit comments