Skip to content

Commit

Permalink
Tests: Ignore .copyq_lock
Browse files Browse the repository at this point in the history
  • Loading branch information
hluk committed Jun 28, 2024
1 parent d66dbf8 commit 55e1c60
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion plugins/itemsync/tests/itemsynctests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ class TestDir final {

QStringList files() const
{
return m_dir.entryList(QDir::AllEntries | QDir::NoDotAndDotDot, QDir::Name);
QStringList files = m_dir.entryList(QDir::AllEntries | QDir::NoDotAndDotDot, QDir::Name);
files.removeOne(QStringLiteral(".copyq_lock"));
return files;
}

FilePtr file(const QString &fileName) const
Expand Down

0 comments on commit 55e1c60

Please sign in to comment.