manila/manila/tests/share/drivers/windows
Yusuke Hayashi 8ce1530e21 Fix order of arguments in assertEqual
Fix incorrect order assertEqual(observed, expected) as below.
  assertEqual(observed, expected) => assertEqual(expected, observed)

Target of this patch:
  manila/tests/share/*

Note:
I also fix following asserts around above fixed parts.
  assertEqual(xx, True), assertEqual(True, xx) => assertTrue(xx)

As for assertFalse,
I do not convert assertEqual(xx, False) to assertFalse(xx)
because assertFalse(None) does not raise exception.

Change-Id: I56688105ab3b77e4f71bde472763a9c02c43664b
Partial-Bug: #1259292
2015-10-04 03:43:17 +09:00
..
__init__.py Add WinRM helper 2015-08-20 13:33:47 +03:00
test_service_instance.py Add Windows SMB share driver 2015-08-31 12:24:19 +03:00
test_windows_smb_driver.py Fix order of arguments in assertEqual 2015-10-04 03:43:17 +09:00
test_windows_smb_helper.py Add Windows SMB share driver 2015-08-31 12:24:19 +03:00
test_windows_utils.py Add Windows SMB share driver 2015-08-31 12:24:19 +03:00
test_winrm_helper.py Add WinRM helper 2015-08-20 13:33:47 +03:00