From 2f2914d7cb7f28f10bcf9f52e43d85c3f61b43b4 Mon Sep 17 00:00:00 2001 From: John Colvin Date: Fri, 21 Jun 2019 15:51:52 +0100 Subject: [PATCH] typo in transcode unittest --- std/encoding.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/std/encoding.d b/std/encoding.d index 570c2e47a..7ae392d0b 100644 --- a/std/encoding.d +++ b/std/encoding.d @@ -2467,7 +2467,7 @@ do Latin1String ls; // transcode from UTF-16 to ISO-8859-1 transcode(ws, ls); - assert(ws == "hello world"); + assert(ls == "hello world"); } @system pure unittest