Skip to content

Commit 4eeccbd

Browse files
committed
Remove newly added tests
1 parent 5730c99 commit 4eeccbd

File tree

1 file changed

+9
-49
lines changed

1 file changed

+9
-49
lines changed

Diff for: test-files/indentation-tests.cs

+9-49
Original file line numberDiff line numberDiff line change
@@ -119,22 +119,22 @@ public void Test()
119119
PropB = 2
120120
};
121121

122-
yield return new InnerA.InnerB {
123-
PropA = 1,
124-
PropB = 2
125-
};
122+
// yield return new InnerA.InnerB {
123+
// PropA = 1,
124+
// PropB = 2
125+
// };
126126

127127
yield return new InnerA
128128
{
129129
Boo = "Foo",
130130
May = "Yay"
131131
};
132132

133-
yield return new InnerA.InnerB
134-
{
135-
Boo = "Foo",
136-
May = "Yay"
137-
};
133+
// yield return new InnerA.InnerB
134+
// {
135+
// Boo = "Foo",
136+
// May = "Yay"
137+
// };
138138

139139
// extra test-cases
140140

@@ -255,43 +255,3 @@ public async Task WriteAsync()
255255
}
256256
}
257257
}
258-
259-
namespace Foo
260-
{
261-
internal T GetThings()
262-
{
263-
private Thing<int> Values(string key, int[] numbers, bool ignoreCase)
264-
{
265-
return (from n in numbers
266-
where string.Equals("", "")
267-
select n);
268-
}
269-
270-
private string GetKey(int number, bool randomCase)
271-
{
272-
if (randomCase)
273-
{
274-
bool upper = false
275-
return (upper ? "AA" : "aa");
276-
}
277-
else
278-
{
279-
return "AA" + Right2Chars(number.ToString());
280-
}
281-
}
282-
}
283-
}
284-
285-
namespace Foo
286-
{
287-
internal T GetAssemblies()
288-
{
289-
static string GetRelativePath(string path, Uri baseUri)
290-
{
291-
var rootedPath = Path.IsPathRooted(path)
292-
? path
293-
: x;
294-
return rootedPath;
295-
}
296-
}
297-
}

0 commit comments

Comments
 (0)