From 19f8f1c075e2d90d6a153b8876c58b645d51c67c Mon Sep 17 00:00:00 2001
From: Jamie Seward <jamie.d.seward@gmail.com>
Date: Mon, 16 Oct 2017 00:21:38 -0700
Subject: [PATCH] Add missing "u8"

This causes test-udt to crash due to bad iterator
---
 test/src/unit-udt.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/src/unit-udt.cpp b/test/src/unit-udt.cpp
index 6aa469fe..409cac83 100644
--- a/test/src/unit-udt.cpp
+++ b/test/src/unit-udt.cpp
@@ -201,7 +201,7 @@ void from_json(const BasicJsonType& j, country& c)
     {
         {u8"中华人民共和国", country::china},
         {"France", country::france},
-        {"Российская Федерация", country::russia}
+        {u8"Российская Федерация", country::russia}
     };
 
     const auto it = m.find(str);