Skip to content

Commit

Permalink
ensure we enable service before running service test
Browse files Browse the repository at this point in the history
  • Loading branch information
Ch3LL committed Apr 16, 2020
1 parent 44133b2 commit bda906d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 15 deletions.
17 changes: 2 additions & 15 deletions CHANGELOG.md
Expand Up @@ -7,7 +7,6 @@ This project versioning is _similar_ to [Semantic Versioning](https://semver.org
Versions are `MAJOR.PATCH`.

## 3001 - Sodium
## Sodium

### Removed

Expand All @@ -16,24 +15,12 @@ Versions are `MAJOR.PATCH`.
### Changed

### Fixed
- [#56237](https://github.com/saltstack/salt/pull/56237) - Fix alphabetical ordering and remove duplicates across all documentation indexes - [@myii](https://github.com/myii)
- [#56325](https://github.com/saltstack/salt/pull/56325) - Fix hyperlinks to `salt.serializers` and other documentation issues - [@myii](https://github.com/myii)

### Added
- [#56627](https://github.com/saltstack/salt/pull/56627) - Add new salt-ssh set_path option


## 3000.1

### Removed

### Deprecated

### Changed

### Fixed

- [#56237](https://github.com/saltstack/salt/pull/56237) - Fix alphabetical ordering and remove duplicates across all documentation indexes - [@myii](https://github.com/myii)
- [#56325](https://github.com/saltstack/salt/pull/56325) - Fix hyperlinks to `salt.serializers` and other documentation issues - [@myii](https://github.com/myii)

## 3000.1

### Removed
Expand Down
1 change: 1 addition & 0 deletions tests/integration/ssh/test_master.py
Expand Up @@ -37,6 +37,7 @@ def test_service(self, grains):
service = "org.ntp.ntpd"
if int(os_release.split(".")[1]) >= 13:
service = "com.apple.AirPlayXPCHelper"
self.run_function("service.enable", [service])
ret = self.run_function("service.get_all")
self.assertIn(service, ret)
self.run_function("service.stop", [service])
Expand Down

0 comments on commit bda906d

Please sign in to comment.