mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Call the windows specific function not the general one
This will make the `unit.modules.win_network_test.WinNetworkTestCase.test_interfaces` test fail, as it should fail given that it worked because it was being "fed" the linux interfaces when executed from linux.
This commit is contained in:
parent
1fd0bc2011
commit
83e88a3eb1
1 changed files with 1 additions and 1 deletions
|
@ -210,7 +210,7 @@ def interfaces():
|
|||
|
||||
salt '*' network.interfaces
|
||||
'''
|
||||
return salt.utils.network.interfaces()
|
||||
return salt.utils.network.win_interfaces()
|
||||
|
||||
|
||||
def hw_addr(iface):
|
||||
|
|
Loading…
Add table
Reference in a new issue