(self, acfactory)
| 1288 | configtracker.wait_progress(0) |
| 1289 | |
| 1290 | def test_invalid_user(self, acfactory): |
| 1291 | configdict = acfactory.get_next_liveconfig() |
| 1292 | ac1 = acfactory.get_unconfigured_account() |
| 1293 | configdict["addr"] = "$" + configdict["addr"] |
| 1294 | ac1.update_config(configdict) |
| 1295 | configtracker = ac1.configure() |
| 1296 | configtracker.wait_progress(500) |
| 1297 | configtracker.wait_progress(0) |
| 1298 | |
| 1299 | def test_invalid_domain(self, acfactory): |
| 1300 | configdict = acfactory.get_next_liveconfig() |
nothing calls this directly
no test coverage detected