<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">From 27161be68648f9056342c4c34aaa75dc8100ab5d Mon Sep 17 00:00:00 2001
From: Sergey Fedorov &lt;vital.had@gmail.com&gt;
Date: Thu, 5 Jan 2023 00:09:15 +0700
Subject: [PATCH 1/3] Fix catch2 includes

---
 tests/function_test.cpp           | 2 +-
 tests/main.cpp                    | 2 +-
 tests/optional_test.cpp           | 2 +-
 tests/sequence_container_test.cpp | 2 +-
 tests/variant_test.cpp            | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/tests/function_test.cpp b/tests/function_test.cpp
index 4078766..9d46f2d 100644
--- a/tests/function_test.cpp
+++ b/tests/function_test.cpp
@@ -1,4 +1,4 @@
-#include &lt;catch2/catch.hpp&gt;
+#include &lt;catch2/catch_all.hpp&gt;
 
 #include &lt;kitten/instances/function.h&gt;
 #include &lt;string&gt;
diff --git a/tests/main.cpp b/tests/main.cpp
index f481b16..13928b9 100644
--- a/tests/main.cpp
+++ b/tests/main.cpp
@@ -1,3 +1,3 @@
 #define CATCH_CONFIG_MAIN
 
-#include &lt;catch2/catch.hpp&gt;
+#include &lt;catch2/catch_all.hpp&gt;
diff --git a/tests/optional_test.cpp b/tests/optional_test.cpp
index 54dff11..5ccd5dd 100644
--- a/tests/optional_test.cpp
+++ b/tests/optional_test.cpp
@@ -1,4 +1,4 @@
-#include &lt;catch2/catch.hpp&gt;
+#include &lt;catch2/catch_all.hpp&gt;
 
 #include &lt;kitten/instances/optional.h&gt;
 #include &lt;string&gt;
diff --git a/tests/sequence_container_test.cpp b/tests/sequence_container_test.cpp
index 3c173f3..c0ac823 100644
--- a/tests/sequence_container_test.cpp
+++ b/tests/sequence_container_test.cpp
@@ -1,4 +1,4 @@
-#include &lt;catch2/catch.hpp&gt;
+#include &lt;catch2/catch_all.hpp&gt;
 
 #include "utils.h"
 #include &lt;functional&gt;
diff --git a/tests/variant_test.cpp b/tests/variant_test.cpp
index 9c9ee18..4e7e626 100644
--- a/tests/variant_test.cpp
+++ b/tests/variant_test.cpp
@@ -1,4 +1,4 @@
-#include &lt;catch2/catch.hpp&gt;
+#include &lt;catch2/catch_all.hpp&gt;
 
 #include &lt;optional&gt;
 #include &lt;string&gt;
-- 
2.39.0

</pre></body></html>