Skip to content

Commit

Permalink
Tests: Avoid testing multiple URIs (behaviour differs based on platform)
Browse files Browse the repository at this point in the history
  • Loading branch information
hluk committed Nov 10, 2024
1 parent 6344a22 commit 9ac0a33
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/tests/tests_other.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -959,7 +959,7 @@ void Tests::clipboardUriList()
RUN(script, "");
WAIT_ON_OUTPUT("commands().length", "1\n");

const QByteArray uris = "https://test1.example.com\nhttps://test2.example.com";
TEST( m_test->setClipboard(uris, mimeUriList) );
WAIT_ON_OUTPUT("clipboard(mimeUriList)", uris);
const QByteArray uri = "https://test1.example.com";
TEST( m_test->setClipboard(uri, mimeUriList) );
WAIT_ON_OUTPUT("clipboard(mimeUriList)", uri);
}

0 comments on commit 9ac0a33

Please sign in to comment.