Remove unnecessary return

This commit is contained in:
Ivan Tomilov 2017-10-26 22:36:45 +03:00
parent 7a2c7651db
commit 004aa83d84
4 changed files with 0 additions and 4 deletions

View File

@ -45,7 +45,6 @@ func (s *AccountsTestSuite) TestRPCEthAccountsWithUpstream() {
if GetNetworkID() == params.StatusChainNetworkID {
s.T().Skip()
return
}
addr, err := GetRemoteURL()

View File

@ -276,7 +276,6 @@ func (s *ManagerTestSuite) TestNetworkSwitching() {
func (s *ManagerTestSuite) TestStartNodeWithUpstreamEnabled() {
if GetNetworkID() == params.StatusChainNetworkID {
s.T().Skip()
return
}
nodeConfig, err := e2e.MakeTestNodeConfig(GetNetworkID())

View File

@ -33,7 +33,6 @@ func (s *RPCTestSuite) SetupTest() {
func (s *RPCTestSuite) TestCallRPC() {
if GetNetworkID() == params.StatusChainNetworkID {
s.T().Skip()
return
}
for _, upstreamEnabled := range []bool{false, true} {

View File

@ -317,7 +317,6 @@ func (s *TransactionsTestSuite) TestSendEtherTxUpstream() {
if GetNetworkID() == params.StatusChainNetworkID {
s.T().Skip()
return
}
addr, err := GetRemoteURL()