|
@@ -1,8 +1,8 @@
|
|
|
// Licensed to the .NET Foundation under one or more agreements.
|
|
|
// The .NET Foundation licenses this file to you under the Apache 2.0 License.
|
|
|
// See the LICENSE file in the project root for more information.
|
|
|
+
|
|
|
using System;
|
|
|
-using System.Text;
|
|
|
using System.Collections.Generic;
|
|
|
using System.Linq;
|
|
|
using Xunit;
|
|
@@ -351,7 +351,7 @@ namespace Tests
|
|
|
[Fact]
|
|
|
public void TakeLast_TakeZero()
|
|
|
{
|
|
|
- var e = Enumerable.Range(1, 5) ;
|
|
|
+ var e = Enumerable.Range(1, 5);
|
|
|
var r = e.TakeLast(0).ToList();
|
|
|
Assert.True(Enumerable.SequenceEqual(r, Enumerable.Empty<int>()));
|
|
|
}
|