@@ -1182,13 +1182,13 @@ describe('Parser', function () {
11821182 shouldNotParse ( parser , '1 <a> <b>.' ,
11831183 'Unexpected literal on line 1.' ) ) ;
11841184
1185- it ( 'should not parse RDF*' ,
1185+ it ( 'should not parse RDF* in the subject position ' ,
11861186 shouldNotParse ( parser , '<<<a> <b> <c>>> <a> <b> .' ,
1187- '<< is not allowed in this format on line 1.' ) ) ;
1187+ 'Unexpected RDF* syntax on line 1.' ) ) ;
11881188
1189- it ( 'should not parse RDF*' ,
1189+ it ( 'should not parse RDF* in the object position ' ,
11901190 shouldNotParse ( parser , '<a> <b> <<a> <b> <c>>>.' ,
1191- '<< is not allowed in this format on line 1.' ) ) ;
1191+ 'Unexpected RDF* syntax on line 1.' ) ) ;
11921192 } ) ;
11931193
11941194 describe ( 'A Parser instance for the TurtleStar format' , function ( ) {
@@ -1243,13 +1243,13 @@ describe('Parser', function () {
12431243 it ( 'should not parse @forAll' ,
12441244 shouldNotParse ( parser , '@forAll <x>.' , 'Unexpected "@forAll" on line 1.' ) ) ;
12451245
1246- it ( 'should not parse RDF*' ,
1246+ it ( 'should not parse RDF* in the subject position ' ,
12471247 shouldNotParse ( parser , '<<<a> <b> <c>>> <a> <b> .' ,
1248- '<< is not allowed in this format on line 1.' ) ) ;
1248+ 'Unexpected RDF* syntax on line 1.' ) ) ;
12491249
1250- it ( 'should not parse RDF*' ,
1250+ it ( 'should not parse RDF* in the object position ' ,
12511251 shouldNotParse ( parser , '<a> <b> <<<a> <b> <c>>>.' ,
1252- '<< is not allowed in this format on line 1.' ) ) ;
1252+ 'Unexpected RDF* syntax on line 1.' ) ) ;
12531253 } ) ;
12541254
12551255 describe ( 'A Parser instance for the TriGStar format' , function ( ) {
@@ -1314,13 +1314,13 @@ describe('Parser', function () {
13141314 it ( 'should not parse @forAll' ,
13151315 shouldNotParse ( parser , '@forAll <x>.' , 'Unexpected "@forAll" on line 1.' ) ) ;
13161316
1317- it ( 'should not parse RDF*' ,
1317+ it ( 'should not parse RDF* in the subject position ' ,
13181318 shouldNotParse ( parser , '<<<a> <b> <c>>> <a> <b> .' ,
1319- '<< is not allowed in this format on line 1.' ) ) ;
1319+ 'Unexpected RDF* syntax on line 1.' ) ) ;
13201320
1321- it ( 'should not parse RDF*' ,
1321+ it ( 'should not parse RDF* in the object position ' ,
13221322 shouldNotParse ( parser , '<http://ex.org/a> <http://ex.org/b> <<<a> <b> <c>>>.' ,
1323- '<< is not allowed in this format on line 1.' ) ) ;
1323+ 'Unexpected RDF* syntax on line 1.' ) ) ;
13241324 } ) ;
13251325
13261326 describe ( 'A Parser instance for the N-TriplesStar format' , function ( ) {
@@ -1373,13 +1373,13 @@ describe('Parser', function () {
13731373 it ( 'should not parse @forAll' ,
13741374 shouldNotParse ( parser , '@forAll <x>.' , 'Unexpected "@forAll" on line 1.' ) ) ;
13751375
1376- it ( 'should not parse RDF*' ,
1376+ it ( 'should not parse RDF* in the subject position ' ,
13771377 shouldNotParse ( parser , '<<<a> <b> <c>>> <a> <b> .' ,
1378- '<< is not allowed in this format on line 1.' ) ) ;
1378+ 'Unexpected RDF* syntax on line 1.' ) ) ;
13791379
1380- it ( 'should not parse RDF*' ,
1380+ it ( 'should not parse RDF* in the object position ' ,
13811381 shouldNotParse ( parser , '_:a <http://ex.org/b> <<<a> <b> <c>>>.' ,
1382- '<< is not allowed in this format on line 1.' ) ) ;
1382+ 'Unexpected RDF* syntax on line 1.' ) ) ;
13831383 } ) ;
13841384
13851385 describe ( 'A Parser instance for the N-QuadsStar format' , function ( ) {
@@ -1720,13 +1720,13 @@ describe('Parser', function () {
17201720 [ '"bonjour"@fr' , 'sameAs' , '"hello"@en' , '_:b0' ]
17211721 ) ) ;
17221722
1723- it ( 'should not parse RDF*' ,
1723+ it ( 'should not parse RDF* in the subject position ' ,
17241724 shouldNotParse ( parser , '<<<a> <b> <c>>> <a> <b> .' ,
1725- '<< is not allowed in this format on line 1.' ) ) ;
1725+ 'Unexpected RDF* syntax on line 1.' ) ) ;
17261726
1727- it ( 'should not parse RDF*' ,
1727+ it ( 'should not parse RDF* in the object position ' ,
17281728 shouldNotParse ( parser , '<a> <b> <<<a> <b> <c>>>.' ,
1729- '<< is not allowed in this format on line 1.' ) ) ;
1729+ 'Unexpected RDF* syntax on line 1.' ) ) ;
17301730 } ) ;
17311731
17321732 describe ( 'A Parser instance for the N3Star format' , function ( ) {
0 commit comments