From 2a409cdec6b8c8bcdd7a009a7f358a8f0e2ca452 Mon Sep 17 00:00:00 2001 From: Jon Harper Date: Sat, 1 Mar 2014 15:46:33 +0100 Subject: [PATCH] YAML: don't test types on complex key test --- extra/yaml/yaml-tests.factor | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/extra/yaml/yaml-tests.factor b/extra/yaml/yaml-tests.factor index eb9cc8edb1..bb1a401c29 100644 --- a/extra/yaml/yaml-tests.factor +++ b/extra/yaml/yaml-tests.factor @@ -38,11 +38,11 @@ ${ test-represented-string } [ $ test-obj >yaml ] unit-test ${ test-represented-string } [ $ test-represented-string yaml> >yaml ] unit-test ! Non-scalar key -CONSTANT: complex-key H{ { { "4" } "3" } } +CONSTANT: complex-key H{ { { "foo" } "bar" } } CONSTANT: complex-key-represented """--- !!map ? !!seq -- !!str 4 -: !!str 3 +- !!str foo +: !!str bar ... """