()
| 53 | } |
| 54 | |
| 55 | func (ts *FactorTestSuite) TestUpdateStatus() { |
| 56 | newFactorStatus := FactorStateVerified |
| 57 | require.NoError(ts.T(), ts.TestFactor.UpdateStatus(ts.db, newFactorStatus)) |
| 58 | require.Equal(ts.T(), newFactorStatus.String(), ts.TestFactor.Status) |
| 59 | } |
| 60 | |
| 61 | func (ts *FactorTestSuite) TestUpdateFriendlyName() { |
| 62 | newName := "newfactorname" |
nothing calls this directly
no test coverage detected