(self)
| 474 | class RemoteWinregTests(BaseWinregTests): |
| 475 | |
| 476 | def test_remote_registry_works(self): |
| 477 | remote_key = ConnectRegistry(REMOTE_NAME, HKEY_CURRENT_USER) |
| 478 | self._test_all(remote_key) |
| 479 | |
| 480 | |
| 481 | @unittest.skipUnless(WIN64_MACHINE, "x64 specific registry tests") |