mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-24 05:55:59 +03:00
Fix typo
Found by Lintian. Signed-off-by: Christian Göttsche <cgzones@googlemail.com>
This commit is contained in:
parent
68b591713d
commit
1a83894074
7 changed files with 19 additions and 19 deletions
|
@ -31,7 +31,7 @@ def extractDeps(macho):
|
|||
if m:
|
||||
path = resolvePath(m.group(0))
|
||||
if not os.path.exists(path):
|
||||
logging.warning("Non-existant file found in dependencies, ignoring: [%s]", path)
|
||||
logging.warning("Non-existent file found in dependencies, ignoring: [%s]", path)
|
||||
continue
|
||||
deps.append(path)
|
||||
return deps
|
||||
|
|
|
@ -238,7 +238,7 @@ std::unique_ptr<Vfs> OCC::createVfsFromPlugin(Vfs::Mode mode)
|
|||
const auto pluginPath = pluginFileName(QStringLiteral("vfs"), name);
|
||||
|
||||
if (!isVfsPluginAvailable(mode)) {
|
||||
qCCritical(lcPlugin) << "Could not load plugin: not existant or bad metadata" << pluginPath;
|
||||
qCCritical(lcPlugin) << "Could not load plugin: not existent or bad metadata" << pluginPath;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
|
|
@ -1638,7 +1638,7 @@ static QString canonicalPath(const QString &path)
|
|||
const auto parentPath = selFile.dir().path();
|
||||
|
||||
// It's possible for the parentPath to match the path
|
||||
// (possibly we've arrived at a non-existant drive root on Windows)
|
||||
// (possibly we've arrived at a non-existent drive root on Windows)
|
||||
// and recursing would be fatal.
|
||||
if (parentPath == path) {
|
||||
return path;
|
||||
|
|
|
@ -991,7 +991,7 @@ private slots:
|
|||
QCOMPARE(*vfs->availability("online"), VfsItemAvailability::OnlineOnly);
|
||||
QCOMPARE(*vfs->availability("local"), VfsItemAvailability::AlwaysLocal);
|
||||
|
||||
auto r = vfs->availability("nonexistant");
|
||||
auto r = vfs->availability("nonexistent");
|
||||
QVERIFY(!r);
|
||||
QCOMPARE(r.error(), Vfs::AvailabilityError::NoSuchItem);
|
||||
}
|
||||
|
|
|
@ -46,7 +46,7 @@ private slots:
|
|||
void testFileRecord()
|
||||
{
|
||||
SyncJournalFileRecord record;
|
||||
QVERIFY(_db.getFileRecord(QByteArrayLiteral("nonexistant"), &record));
|
||||
QVERIFY(_db.getFileRecord(QByteArrayLiteral("nonexistent"), &record));
|
||||
QVERIFY(!record.isValid());
|
||||
|
||||
record._path = "foo";
|
||||
|
@ -129,7 +129,7 @@ private slots:
|
|||
void testDownloadInfo()
|
||||
{
|
||||
using Info = SyncJournalDb::DownloadInfo;
|
||||
Info record = _db.getDownloadInfo("nonexistant");
|
||||
Info record = _db.getDownloadInfo("nonexistent");
|
||||
QVERIFY(!record._valid);
|
||||
|
||||
record._errorCount = 5;
|
||||
|
@ -149,7 +149,7 @@ private slots:
|
|||
void testUploadInfo()
|
||||
{
|
||||
using Info = SyncJournalDb::UploadInfo;
|
||||
Info record = _db.getUploadInfo("nonexistant");
|
||||
Info record = _db.getUploadInfo("nonexistent");
|
||||
QVERIFY(!record._valid);
|
||||
|
||||
record._errorCount = 5;
|
||||
|
@ -382,31 +382,31 @@ private slots:
|
|||
QCOMPARE(get("local"), PinState::AlwaysLocal);
|
||||
QCOMPARE(get("online"), PinState::OnlineOnly);
|
||||
QCOMPARE(get("inherit"), PinState::AlwaysLocal);
|
||||
QCOMPARE(get("nonexistant"), PinState::AlwaysLocal);
|
||||
QCOMPARE(get("nonexistent"), PinState::AlwaysLocal);
|
||||
QCOMPARE(get("online/local"), PinState::AlwaysLocal);
|
||||
QCOMPARE(get("local/online"), PinState::OnlineOnly);
|
||||
QCOMPARE(get("inherit/local"), PinState::AlwaysLocal);
|
||||
QCOMPARE(get("inherit/online"), PinState::OnlineOnly);
|
||||
QCOMPARE(get("inherit/inherit"), PinState::AlwaysLocal);
|
||||
QCOMPARE(get("inherit/nonexistant"), PinState::AlwaysLocal);
|
||||
QCOMPARE(get("inherit/nonexistent"), PinState::AlwaysLocal);
|
||||
|
||||
// Inheriting checks, level 1
|
||||
QCOMPARE(get("local/inherit"), PinState::AlwaysLocal);
|
||||
QCOMPARE(get("local/nonexistant"), PinState::AlwaysLocal);
|
||||
QCOMPARE(get("local/nonexistent"), PinState::AlwaysLocal);
|
||||
QCOMPARE(get("online/inherit"), PinState::OnlineOnly);
|
||||
QCOMPARE(get("online/nonexistant"), PinState::OnlineOnly);
|
||||
QCOMPARE(get("online/nonexistent"), PinState::OnlineOnly);
|
||||
|
||||
// Inheriting checks, level 2
|
||||
QCOMPARE(get("local/inherit/inherit"), PinState::AlwaysLocal);
|
||||
QCOMPARE(get("local/local/inherit"), PinState::AlwaysLocal);
|
||||
QCOMPARE(get("local/local/nonexistant"), PinState::AlwaysLocal);
|
||||
QCOMPARE(get("local/local/nonexistent"), PinState::AlwaysLocal);
|
||||
QCOMPARE(get("local/online/inherit"), PinState::OnlineOnly);
|
||||
QCOMPARE(get("local/online/nonexistant"), PinState::OnlineOnly);
|
||||
QCOMPARE(get("local/online/nonexistent"), PinState::OnlineOnly);
|
||||
QCOMPARE(get("online/inherit/inherit"), PinState::OnlineOnly);
|
||||
QCOMPARE(get("online/local/inherit"), PinState::AlwaysLocal);
|
||||
QCOMPARE(get("online/local/nonexistant"), PinState::AlwaysLocal);
|
||||
QCOMPARE(get("online/local/nonexistent"), PinState::AlwaysLocal);
|
||||
QCOMPARE(get("online/online/inherit"), PinState::OnlineOnly);
|
||||
QCOMPARE(get("online/online/nonexistant"), PinState::OnlineOnly);
|
||||
QCOMPARE(get("online/online/nonexistent"), PinState::OnlineOnly);
|
||||
|
||||
// Spot check the recursive variant
|
||||
QCOMPARE(getRecursive(""), PinState::Inherited);
|
||||
|
@ -427,12 +427,12 @@ private slots:
|
|||
QCOMPARE(get("local"), PinState::AlwaysLocal);
|
||||
QCOMPARE(get("online"), PinState::OnlineOnly);
|
||||
QCOMPARE(get("inherit"), PinState::OnlineOnly);
|
||||
QCOMPARE(get("nonexistant"), PinState::OnlineOnly);
|
||||
QCOMPARE(get("nonexistent"), PinState::OnlineOnly);
|
||||
make("", PinState::AlwaysLocal);
|
||||
QCOMPARE(get("local"), PinState::AlwaysLocal);
|
||||
QCOMPARE(get("online"), PinState::OnlineOnly);
|
||||
QCOMPARE(get("inherit"), PinState::AlwaysLocal);
|
||||
QCOMPARE(get("nonexistant"), PinState::AlwaysLocal);
|
||||
QCOMPARE(get("nonexistent"), PinState::AlwaysLocal);
|
||||
|
||||
// Wiping
|
||||
QCOMPARE(getRaw("local/local"), PinState::AlwaysLocal);
|
||||
|
|
|
@ -1367,7 +1367,7 @@ private slots:
|
|||
QCOMPARE(*vfs->availability("online"), VfsItemAvailability::OnlineOnly);
|
||||
QCOMPARE(*vfs->availability("local"), VfsItemAvailability::AlwaysLocal);
|
||||
|
||||
auto r = vfs->availability("nonexistant");
|
||||
auto r = vfs->availability("nonexistent");
|
||||
QVERIFY(!r);
|
||||
QCOMPARE(r.error(), Vfs::AvailabilityError::NoSuchItem);
|
||||
}
|
||||
|
|
|
@ -962,7 +962,7 @@ private slots:
|
|||
QCOMPARE(*vfs->availability("online"), VfsItemAvailability::OnlineOnly);
|
||||
QCOMPARE(*vfs->availability("local"), VfsItemAvailability::AlwaysLocal);
|
||||
|
||||
auto r = vfs->availability("nonexistant");
|
||||
auto r = vfs->availability("nonexistent");
|
||||
QVERIFY(!r);
|
||||
QCOMPARE(r.error(), Vfs::AvailabilityError::NoSuchItem);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue