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:
Pedro Algarvio 2015-05-07 19:31:19 +01:00
parent 1fd0bc2011
commit 83e88a3eb1

View file

@ -210,7 +210,7 @@ def interfaces():
salt '*' network.interfaces
'''
return salt.utils.network.interfaces()
return salt.utils.network.win_interfaces()
def hw_addr(iface):