Simplify the test for issue 136
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 6bbffc3..a64cdb8 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -7,7 +7,10 @@
 	</properties>

 	<body>

         <release version="1.10-SNAPSHOT" date="in Mercurial" description="Development">

-             <action dev="py4fun" type="remove">

+             <action dev="py4fun" type="add">

+                Add a test for issue 136 (2011-12-14)

+             </action>

+              <action dev="py4fun" type="remove">

                 Deprecate the DumperOptions.calculateScalarStyle() method because it was introduced as a quick

                 fix for issue 29. Now it should not be required at all (because of the fix for issue 66),

                 or it should be implemented in the Representer (in RepresentString) (2011-10-10)

diff --git a/src/test/java/org/yaml/snakeyaml/issues/issue136/TabInScalarTest.java b/src/test/java/org/yaml/snakeyaml/issues/issue136/TabInScalarTest.java
index f713cde..fe7810f 100644
--- a/src/test/java/org/yaml/snakeyaml/issues/issue136/TabInScalarTest.java
+++ b/src/test/java/org/yaml/snakeyaml/issues/issue136/TabInScalarTest.java
@@ -23,12 +23,18 @@
 public class TabInScalarTest extends TestCase {
 
     public void testTab() {
-        String data = (String) new Yaml().load("--- 36L\tDIESEL\n");
-        assertEquals("36L\tDIESEL", data);
+        try {
+            new Yaml().load("L\tD");
+            fail("Tabs in plain scalars are not allowed.");
+        } catch (Exception e) {
+            assertEquals(
+                    "while scanning for the next token; found character \t'\\t' that cannot start any token",
+                    e.getMessage());
+        }
     }
 
     public void testNoTab() {
-        String data = (String) new Yaml().load("--- 36L DIESEL\n");
-        assertEquals("36L DIESEL", data);
+        String data = (String) new Yaml().load("L D");
+        assertEquals("L D", data);
     }
 }