From 5da757bbb346749dba6bc21296f8c9e84b1adbda Mon Sep 17 00:00:00 2001
From: garethsb-sony <gareth.sylvester-bradley@sony.com>
Date: Thu, 31 Jan 2019 23:39:12 +0000
Subject: [PATCH] Attempt to satisfy Coveralls by adding a test for (unchanged)
 operator std::string

---
 test/src/unit-json_pointer.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/test/src/unit-json_pointer.cpp b/test/src/unit-json_pointer.cpp
index b16603a7..765c6b48 100644
--- a/test/src/unit-json_pointer.cpp
+++ b/test/src/unit-json_pointer.cpp
@@ -438,6 +438,7 @@ TEST_CASE("JSON pointers")
                 })
         {
             CHECK(json::json_pointer(ptr).to_string() == ptr);
+            CHECK(std::string(json::json_pointer(ptr)) == ptr);
         }
     }