Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSami Vänttinen <sami.vanttinen@protonmail.com>2020-09-05 16:00:36 +0300
committerGitHub <noreply@github.com>2020-09-05 16:00:36 +0300
commit9bab5d5a33cbf8bcb87ac1512f45d7829392c19a (patch)
treec6ca1247dbbb51a18d9aba3b0c858d5da07eeeb5 /tests
parentc67ebf19d45c8371c93d86587608e4b4ff44cd4a (diff)
Don't mark URL references as invalid URL (#5380)
Diffstat (limited to 'tests')
-rw-r--r--tests/TestBrowser.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/TestBrowser.cpp b/tests/TestBrowser.cpp
index 3e518c1e2..95189fec7 100644
--- a/tests/TestBrowser.cpp
+++ b/tests/TestBrowser.cpp
@@ -437,6 +437,7 @@ void TestBrowser::testValidURLs()
urls["http:/example.com"] = false;
urls["cmd://C:/Toolchains/msys2/usr/bin/mintty \"ssh jon@192.168.0.1:22\""] = true;
urls["file:///Users/testUser/Code/test.html"] = true;
+ urls["{REF:A@I:46C9B1FFBD4ABC4BBB260C6190BAD20C} "] = true;
QHashIterator<QString, bool> i(urls);
while (i.hasNext()) {