test: 修复验证码请求三次单元测试
This commit is contained in:
parent
9122133bb2
commit
e24f3df018
|
@ -1,7 +1,6 @@
|
||||||
using Longbow.Web;
|
using Longbow.Web;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Reflection;
|
|
||||||
using Xunit;
|
using Xunit;
|
||||||
|
|
||||||
namespace Bootstrap.Admin.Api.SqlServer
|
namespace Bootstrap.Admin.Api.SqlServer
|
||||||
|
@ -27,10 +26,8 @@ namespace Bootstrap.Admin.Api.SqlServer
|
||||||
[Fact]
|
[Fact]
|
||||||
public async void Put_Ok()
|
public async void Put_Ok()
|
||||||
{
|
{
|
||||||
var ret = await Client.PutAsJsonAsync<string, bool>("");
|
|
||||||
Assert.False(ret);
|
|
||||||
|
|
||||||
// 三次 Put 请求后返回真
|
// 三次 Put 请求后返回真
|
||||||
|
var ret = await Client.PutAsJsonAsync<string, bool>("");
|
||||||
ret = await Client.PutAsJsonAsync<string, bool>("");
|
ret = await Client.PutAsJsonAsync<string, bool>("");
|
||||||
ret = await Client.PutAsJsonAsync<string, bool>("");
|
ret = await Client.PutAsJsonAsync<string, bool>("");
|
||||||
ret = await Client.PutAsJsonAsync<string, bool>("");
|
ret = await Client.PutAsJsonAsync<string, bool>("");
|
||||||
|
|
Loading…
Reference in New Issue