aboutsummaryrefslogtreecommitdiffstats
path: root/todolist/parser_test.go
diff options
context:
space:
mode:
authorGrant Ammons <gammons@gmail.com>2016-05-12 07:18:47 -0400
committerGrant Ammons <gammons@gmail.com>2016-05-12 07:18:47 -0400
commit3f14a184e28927697185d35829fa1bdb9db5b80d (patch)
treecf023594e7d74cc92f6c69bbdc4946dc1df27898 /todolist/parser_test.go
parent5cdaefd17b999aa554485ca30246e7469affe1e4 (diff)
Make agenda its own command
Diffstat (limited to 'todolist/parser_test.go')
-rw-r--r--todolist/parser_test.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/todolist/parser_test.go b/todolist/parser_test.go
index e913437..44ce3f7 100644
--- a/todolist/parser_test.go
+++ b/todolist/parser_test.go
@@ -72,7 +72,6 @@ func TestDueTomorrow(t *testing.T) {
func TestDueSpecific(t *testing.T) {
assert := assert.New(t)
parser := &Parser{}
- fmt.Println("Parsing new todo")
todo := parser.ParseNewTodo("do this thing with @bob and @mary due jun 1")
assert.Equal("2016-06-01", todo.Due)
}