Skip to content

Commit

Permalink
Tests: Make slow clipboard test more reliable
Browse files Browse the repository at this point in the history
  • Loading branch information
hluk committed Nov 23, 2024
1 parent 72d6372 commit 4a77cad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tests/tests_slow_clipboard.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ void Tests::slowClipboard()

auto clipboard = platformNativeInterface()->clipboard();
for (int i = 0; i < 3; ++i) {
QMimeData *data = new SlowMimeData(QByteArray::number(i), i == 2 ? 100 : 501);
QMimeData *data = new SlowMimeData(QByteArray::number(i), i == 2 ? 100 : 1000);
clipboard->setRawData(ClipboardMode::Clipboard, data);
waitFor(50);
}
Expand Down

0 comments on commit 4a77cad

Please sign in to comment.