Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
topydo
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
topydo
Commits
bdbd47c4
Commit
bdbd47c4
authored
Oct 08, 2015
by
MinchinWeb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix PEP8 E202
whitespace before ')'
parent
a6f6dbaa
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
test/TestAddCommand.py
test/TestAddCommand.py
+1
-1
test/TestTodo.py
test/TestTodo.py
+1
-1
No files found.
test/TestAddCommand.py
View file @
bdbd47c4
...
@@ -76,7 +76,7 @@ class AddCommandTest(CommandTest):
...
@@ -76,7 +76,7 @@ class AddCommandTest(CommandTest):
command
.
execute
()
command
.
execute
()
self
.
assertEqual
(
self
.
todolist
.
todo
(
1
).
priority
(),
None
)
self
.
assertEqual
(
self
.
todolist
.
todo
(
1
).
priority
(),
None
)
self
.
assertEqual
(
self
.
todolist
.
todo
(
1
).
source
(),
self
.
today
+
" Fo(C)o"
)
self
.
assertEqual
(
self
.
todolist
.
todo
(
1
).
source
(),
self
.
today
+
" Fo(C)o"
)
self
.
assertEqual
(
self
.
errors
,
""
)
self
.
assertEqual
(
self
.
errors
,
""
)
def
test_add_priority4
(
self
):
def
test_add_priority4
(
self
):
...
...
test/TestTodo.py
View file @
bdbd47c4
...
@@ -37,7 +37,7 @@ class TodoTest(TopydoTest):
...
@@ -37,7 +37,7 @@ class TodoTest(TopydoTest):
def
test_false_date
(
self
):
def
test_false_date
(
self
):
todo
=
Todo
(
"(C) Foo due:2014-04-31"
)
todo
=
Todo
(
"(C) Foo due:2014-04-31"
)
self
.
assertEqual
(
todo
.
due_date
(),
None
)
self
.
assertEqual
(
todo
.
due_date
(),
None
)
def
test_active1
(
self
):
def
test_active1
(
self
):
todo
=
Todo
(
"(C) Foo due:2014-01-01"
)
todo
=
Todo
(
"(C) Foo due:2014-01-01"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment