From c340a16f96536ace0aff3104d05f1f4c3131a8c2 Mon Sep 17 00:00:00 2001 From: Marcel Otto Date: Mon, 10 Jul 2017 02:19:20 +0200 Subject: [PATCH] Don't use the RDF comments in test names of the W3C Turtle test suite Because OTP < 20 doesn't support unicode characters in atoms the CI tests failed. --- test/support/test_suite.ex | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/support/test_suite.ex b/test/support/test_suite.ex index ad4443b..720fb2b 100644 --- a/test/support/test_suite.ex +++ b/test/support/test_suite.ex @@ -46,7 +46,10 @@ defmodule RDF.TestSuite do def test_name(test_case), do: value(test_case, MF.name) def test_title(test_case), - do: test_name(test_case) <> ": " <> value(test_case, RDFS.comment) +# Unfortunately OTP < 20 doesn't support unicode characters in atoms, +# so we can't put the description in the test name +# do: test_name(test_case) <> ": " <> value(test_case, RDFS.comment) + do: test_name(test_case) def test_input_file(test_case), do: Description.first(test_case, MF.action)