Skip to content

Commit 80d3642

Browse files
committed
Miscellaneous changes - change makefile kill commands to not nuke everything, remove extraneous punctuation
1 parent aa9324a commit 80d3642

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

issue_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ func TestIssueResource(t *testing.T) {
8383
}
8484
for _, issue := range issues {
8585
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")
8787
}
8888
}
8989
})
@@ -141,11 +141,11 @@ func TestIssueResource(t *testing.T) {
141141

142142
details, ok := (*firstIssue.StatusDetails)["inNextRelease"].(bool)
143143
if !ok {
144-
t.Error("Status did not get updated")
144+
t.Error("Status details did not get updated")
145145
}
146146

147147
if !details {
148-
t.Error("Status did not get updated")
148+
t.Error("Status details did not get updated")
149149
}
150150

151151
t.Run("Delete the first issue in this project", func(t *testing.T) {

makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ devenv:
1919
docker run -d --name sentry-worker-1 -e SENTRY_SECRET_KEY='${STUPIDSECRET}' --link sentry-postgres:postgres --link sentry-redis:redis sentry:latest run worker
2020

2121
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)

0 commit comments

Comments
 (0)