From 3bd1f452b5f0be8a62e6a1952fc3a604ffccfa60 Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Thu, 20 Oct 2022 20:23:26 -0700 Subject: [PATCH] Fix version check in test --- tests/test_version.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_version.cpp b/tests/test_version.cpp index a19b59b..779bac3 100644 --- a/tests/test_version.cpp +++ b/tests/test_version.cpp @@ -1,5 +1,5 @@ #include "../src/pugixml.hpp" -#if PUGIXML_VERSION != 1120 +#if PUGIXML_VERSION != 1130 #error Unexpected pugixml version #endif