aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
Diffstat (limited to 'testing')
-rw-r--r--testing/isoimagewriter/fix-find-clang-path.patch16
-rw-r--r--testing/sopel/fix-tests.patch26
2 files changed, 0 insertions, 42 deletions
diff --git a/testing/isoimagewriter/fix-find-clang-path.patch b/testing/isoimagewriter/fix-find-clang-path.patch
deleted file mode 100644
index 5f64b648c7..0000000000
--- a/testing/isoimagewriter/fix-find-clang-path.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-diff --git a/cmake/modules/FindClang.cmake b/cmake/modules/FindClang.cmake
-index 34a8c38198..9ebb9c4a58 100644
---- a/cmake/modules/FindClang.cmake
-+++ b/cmake/modules/FindClang.cmake
-@@ -106,9 +106,9 @@ if(CLANG_FOUND)
- PATHS "${CLANG_LIBRARY_DIRS}"
- "${CLANG_INCLUDE_DIRS}"
- PATH_SUFFIXES "clang/${CLANG_VERSION}/include"
-- "../../../clang/${CLANG_VERSION}/include"
-+ "../../clang/${CLANG_VERSION}/include"
- "clang/${CLANG_VERSION_CLEAN}/include"
-- "../../../clang/${CLANG_VERSION_CLEAN}/include"
-+ "../../clang/${CLANG_VERSION_CLEAN}/include"
- NO_DEFAULT_PATH
- )
-
diff --git a/testing/sopel/fix-tests.patch b/testing/sopel/fix-tests.patch
deleted file mode 100644
index 399cdcd99e..0000000000
--- a/testing/sopel/fix-tests.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-diff --git a/sopel/modules/translate.py b/sopel/modules/translate.py
-index 4084827093..1e69709d4c 100644
---- a/sopel/modules/translate.py
-+++ b/sopel/modules/translate.py
-@@ -105,7 +105,7 @@ def tr(bot, trigger):
-
- @commands('translate', 'tr')
- @example('.tr :en :fr my dog', '"mon chien" (en to fr, translate.google.com)')
--@example('.tr היי', '"Hey" (iw to en, translate.google.com)')
-+@example('.tr היי', '"Hi" (iw to en, translate.google.com)')
- @example('.tr mon chien', '"my dog" (fr to en, translate.google.com)')
- def tr2(bot, trigger):
- """Translates a phrase, with an optional language hint."""
-diff --git a/sopel/modules/search.py b/sopel/modules/search.py
-index 783cc7278f..833304d65b 100644
---- a/sopel/modules/search.py
-+++ b/sopel/modules/search.py
-@@ -94,7 +94,7 @@ def duck_api(query):
- # test for bad Unicode handling in py2
- @example('.duck grandorder.wiki chulainn alter', 'https://grandorder.wiki/Cú_Chulainn_(Alter)')
- # the last example is what .help displays
--@example('.duck sopel irc bot', r'https?:\/\/sopel\.chat\/?', re=True)
-+@example('.duck sopel irc bot', r'https?:\/\/(sopel\.chat|github\.com\/sopel-irc\/sopel)\/?', re=True)
- def duck(bot, trigger):
- """Queries Duck Duck Go for the specified input."""
- query = trigger.group(2)