Skip to content

Commit

Permalink
fix incorrectly written conditions in blog test case
Browse files Browse the repository at this point in the history
  • Loading branch information
HouzuoGuo committed Oct 21, 2016
1 parent ded6b3a commit ef6fa1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sap/note/blog_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ func TestSUSENetCPUOptimisation(t *testing.T) {
o.NetIpv4TcpRmem < 9437184 || o.NetIpv4TcpWmem < 9437184 ||
o.NetIpv4TcpTimestamps != 0 || o.NetIpv4TcpSack != 0 || o.NetIpv4TcpDsack != 0 || o.NetIpv4TcpFack != 0 ||
o.NetIpv4IpfragHighThres < 544288 || o.NetIpv4IpfragLowThres < 393216 ||
o.NetIpv4TcpMaxSynBacklog < 8192 || o.NetIpv4TcpSynackRetries < 3 || o.NetIpv4TcpRetries2 < 6 ||
o.NetIpv4TcpMaxSynBacklog < 8192 || o.NetIpv4TcpSynackRetries > 3 || o.NetIpv4TcpRetries2 > 6 ||
o.NetTcpKeepaliveTime > 1000 || o.NetTcpKeepaliveProbes > 4 || o.NetTcpKeepaliveIntvl > 20 ||
o.NetTcpTwRecycle != 1 || o.NetTcpTwReuse != 1 ||
o.NetTcpFinTimeout > 30 || o.NetTcpMtuProbing != 1 ||
Expand Down

0 comments on commit ef6fa1b

Please sign in to comment.