Fix the random state in tests.
(*args, **kwargs)
| 81 | |
| 82 | |
| 83 | def ICA(*args, **kwargs): |
| 84 | """Fix the random state in tests.""" |
| 85 | if "random_state" not in kwargs: |
| 86 | kwargs["random_state"] = 0 |
| 87 | return _ICA(*args, **kwargs) |
| 88 | |
| 89 | |
| 90 | def _skip_check_picard(method): |
no outgoing calls
no test coverage detected