Merge lp:~dobey/dirspec/fix-pep8 into lp:dirspec

Proposed by dobey
Status: Merged
Approved by: Mike McCracken
Approved revision: 6
Merged at revision: 6
Proposed branch: lp:~dobey/dirspec/fix-pep8
Merge into: lp:dirspec
Diff against target: 24 lines (+7/-4)
1 file modified
dirspec/tests/test_utils.py (+7/-4)
To merge this branch: bzr merge lp:~dobey/dirspec/fix-pep8
Reviewer Review Type Date Requested Status
Mike McCracken (community) Approve
Eric Casteleijn (community) Approve
Review via email: mp+112143@code.launchpad.net

Commit message

Fix some pep8 errors

To post a comment you must log in.
Revision history for this message
Eric Casteleijn (thisfred) :
review: Approve
Revision history for this message
Mike McCracken (mikemc) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'dirspec/tests/test_utils.py'
--- dirspec/tests/test_utils.py 2011-12-20 20:14:09 +0000
+++ dirspec/tests/test_utils.py 2012-06-26 15:30:27 +0000
@@ -73,13 +73,16 @@
73 self.assertTrue('AppData' in special_folders)73 self.assertTrue('AppData' in special_folders)
74 self.assertTrue('Common AppData' in special_folders)74 self.assertTrue('Common AppData' in special_folders)
7575
76 self.assertTrue(special_folders['Personal'] == \76 self.assertEqual(
77 special_folders['Personal'],
77 shell_module.values[FakeShellConModule.CSIDL_PROFILE])78 shell_module.values[FakeShellConModule.CSIDL_PROFILE])
78 self.assertTrue(special_folders['Local AppData'] == \79 self.assertEqual(
80 special_folders['Local AppData'],
79 shell_module.values[FakeShellConModule.CSIDL_LOCAL_APPDATA])81 shell_module.values[FakeShellConModule.CSIDL_LOCAL_APPDATA])
80 self.assertTrue(special_folders['Local AppData'].startswith(82 self.assertTrue(special_folders['Local AppData'].startswith(
81 special_folders['AppData']))83 special_folders['AppData']))
82 self.assertTrue(special_folders['Common AppData'] == \84 self.assertEqual(
85 special_folders['Common AppData'],
83 shell_module.values[FakeShellConModule.CSIDL_COMMON_APPDATA])86 shell_module.values[FakeShellConModule.CSIDL_COMMON_APPDATA])
8487
85 for val in special_folders.itervalues():88 for val in special_folders.itervalues():

Subscribers

People subscribed via source and target branches

to all changes: