Misspelling Nulll -> Null was fixed.

This commit is contained in:
aedampir@gmail.com
2016-03-23 22:32:06 +07:00
parent 72d6e80884
commit 39bb148cf3

View File

@@ -1,11 +1,8 @@
using System;
using System.Collections.Generic;
using System.Reactive.Linq;
using System.Reactive.Threading.Tasks;
using System.Threading.Tasks;
using NSubstitute;
using Octokit.Reactive;
using Octokit.Tests.Helpers;
using Xunit;
namespace Octokit.Tests.Reactive
@@ -15,7 +12,7 @@ namespace Octokit.Tests.Reactive
public class TheCtorMethod
{
[Fact]
public void EnsuresArgumentIsNotNulll()
public void EnsuresArgumentIsNotNull()
{
Assert.Throws<ArgumentNullException>(() => new ObservableCommitsClient(null));
}