Set default tab size to 2

This commit is contained in:
Benoit Blanchon
2014-08-26 11:59:41 +02:00
parent 61952a9bcd
commit 48018bd6e6
3 changed files with 25 additions and 25 deletions

View File

@ -31,7 +31,7 @@ namespace JsonGeneratorTests
whenInputIs("[1]");
outputMustBe(
"[\r\n"
" 1\r\n"
" 1\r\n"
"]");
}
@ -40,8 +40,8 @@ namespace JsonGeneratorTests
whenInputIs("[1,2]");
outputMustBe(
"[\r\n"
" 1,\r\n"
" 2\r\n"
" 1,\r\n"
" 2\r\n"
"]");
}
@ -50,8 +50,8 @@ namespace JsonGeneratorTests
whenInputIs("[[],[]]");
outputMustBe(
"[\r\n"
" [],\r\n"
" []\r\n"
" [],\r\n"
" []\r\n"
"]");
}
@ -60,14 +60,14 @@ namespace JsonGeneratorTests
whenInputIs("[[1,2],[3,4]]");
outputMustBe(
"[\r\n"
" [\r\n"
" 1,\r\n"
" 2\r\n"
" ],\r\n"
" [\r\n"
" 3,\r\n"
" 4\r\n"
" ]\r\n"
" [\r\n"
" 1,\r\n"
" 2\r\n"
" ],\r\n"
" [\r\n"
" 3,\r\n"
" 4\r\n"
" ]\r\n"
"]");
}