From 3536cb50e646a8a9e5f26dce9a25bab101793126 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Thu, 15 Jan 2015 19:47:14 -0800 Subject: Update key syntax to TOML master * Bare keys contain a very limited set of characters now. * Keys in quotes behave the same as basic strings. Closes #47 --- tests/invalid.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/invalid.rs') diff --git a/tests/invalid.rs b/tests/invalid.rs index 582e25d..3df4d02 100644 --- a/tests/invalid.rs +++ b/tests/invalid.rs @@ -5,8 +5,8 @@ use toml::{Parser}; fn run(toml: &str) { let mut p = Parser::new(toml); let table = p.parse(); - assert!(p.errors.len() > 0); assert!(table.is_none()); + assert!(p.errors.len() > 0); } macro_rules! test( ($name:ident, $toml:expr) => ( -- cgit v1.2.3