From 30f306dc1a3c9b0c324b97902fec4048b87efec5 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Wed, 1 Apr 2020 18:25:05 +0200 Subject: [PATCH] another vfmt2 fix --- vlib/v/fmt/tests/string_interpolation_literal_keep.vv | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vlib/v/fmt/tests/string_interpolation_literal_keep.vv b/vlib/v/fmt/tests/string_interpolation_literal_keep.vv index e61614e19d..573a0cdf36 100644 --- a/vlib/v/fmt/tests/string_interpolation_literal_keep.vv +++ b/vlib/v/fmt/tests/string_interpolation_literal_keep.vv @@ -5,9 +5,9 @@ fn main() { i := 123 a := 'abc' b := 'xyz' - c := 'a: $a b: $b i: $i' + e := 'a: $a b: $b i: $i' d := 'a: ${a:5s} b: ${b:-5s} i: ${i:20d}' println('a: $a $b xxx') - eprintln('c: $c .') + eprintln('e: $e') println(d) }