File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ func TestIssueResource(t *testing.T) {
83
83
}
84
84
for _ , issue := range issues {
85
85
if issue .Stats .FourteenDays == nil {
86
- t .Fatal ("We should be able to get 14 days of stats for this issue but didn't. " )
86
+ t .Fatal ("We should be able to get 14 days of stats for this issue but didn't" )
87
87
}
88
88
}
89
89
})
@@ -141,11 +141,11 @@ func TestIssueResource(t *testing.T) {
141
141
142
142
details , ok := (* firstIssue .StatusDetails )["inNextRelease" ].(bool )
143
143
if ! ok {
144
- t .Error ("Status did not get updated" )
144
+ t .Error ("Status details did not get updated" )
145
145
}
146
146
147
147
if ! details {
148
- t .Error ("Status did not get updated" )
148
+ t .Error ("Status details did not get updated" )
149
149
}
150
150
151
151
t .Run ("Delete the first issue in this project" , func (t * testing.T ) {
Original file line number Diff line number Diff line change @@ -19,5 +19,5 @@ devenv:
19
19
docker run -d --name sentry-worker-1 -e SENTRY_SECRET_KEY=' ${STUPIDSECRET}' --link sentry-postgres:postgres --link sentry-redis:redis sentry:latest run worker
20
20
21
21
devclean :
22
- docker kill $$(docker ps -q )
23
- docker rm $$(docker ps -a -q )
22
+ docker kill $$(docker ps -q -a --no-trunc --filter name=^sentry )
23
+ docker rm $$(docker ps -q - a --no-trunc --filter name=^sentry )
You can’t perform that action at this time.
0 commit comments