From 52343ff833c05185f5118eb0b66cbe5d81ae8dd8 Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Thu, 25 Sep 2014 15:06:56 -0700 Subject: [PATCH] text-name is an expression so flat string is okay - tweak issue297 to actually be invalid since text-face-name is not currently an expression --- test/errorhandling/issue297.mss | 4 ++-- test/errorhandling/issue297.result | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/errorhandling/issue297.mss b/test/errorhandling/issue297.mss index a406488..04629a7 100644 --- a/test/errorhandling/issue297.mss +++ b/test/errorhandling/issue297.mss @@ -1,4 +1,4 @@ #t { - text-name: invalid; - text-face-name: "Dejagnu"; + text-name: valid; + text-face-name: 2; } diff --git a/test/errorhandling/issue297.result b/test/errorhandling/issue297.result index ecb845f..c2fe924 100644 --- a/test/errorhandling/issue297.result +++ b/test/errorhandling/issue297.result @@ -1 +1 @@ -issue297.mss:2:2 Invalid value for text-name, the type expression is expected. invalid (of type keyword) was given. \ No newline at end of file +issue297.mss:3:2 Invalid value for text-face-name, the type font is expected. 2 (of type float) was given. \ No newline at end of file