From 27161be68648f9056342c4c34aaa75dc8100ab5d Mon Sep 17 00:00:00 2001
From: Sergey Fedorov <vital.had@gmail.com>
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 <catch2/catch.hpp>
+#include <catch2/catch_all.hpp>
 
 #include <kitten/instances/function.h>
 #include <string>
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 <catch2/catch.hpp>
+#include <catch2/catch_all.hpp>
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 <catch2/catch.hpp>
+#include <catch2/catch_all.hpp>
 
 #include <kitten/instances/optional.h>
 #include <string>
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 <catch2/catch.hpp>
+#include <catch2/catch_all.hpp>
 
 #include "utils.h"
 #include <functional>
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 <catch2/catch.hpp>
+#include <catch2/catch_all.hpp>
 
 #include <optional>
 #include <string>
-- 
2.39.0

