test
This commit is contained in:
snoop 2017-06-23 14:39:29 +09:00
parent b32762c3ed
commit af36a690b1

View File

@ -62,4 +62,15 @@ public class NoAuthProbeDAOTest {
}
@Test
public void update() {
NoAuthProbe probe = this.noAuthProbeDAO.findByTempKey("1cf2555c57d511e79714080027658d13");
probe.setStatus(AuthType.ACCEPT);
this.noAuthProbeDAO.save(probe);
}
}