···150150 return
151151 }
152152153153- // OK, now the blob is known to have at most 1024 bytes we can simply read this in in one go (This saves reading it twice)
153153+ // OK, now the blob is known to have at most 1024 bytes we can simply read this in one go (This saves reading it twice)
154154 dataRc, err := blob.DataAsync()
155155 if err != nil {
156156 ctx.ServerError("DataAsync", err)
+1-1
routers/web/repo/issue.go
···16001600 }
16011601 marked[issue.PosterID] = issue.ShowRole
1602160216031603- // Render comments and and fetch participants.
16031603+ // Render comments and fetch participants.
16041604 participants[0] = issue.Poster
16051605 for _, comment = range issue.Comments {
16061606 comment.Issue = issue
+1-1
tests/e2e/e2e_test.go
···77777878// TestE2e should be the only test e2e necessary. It will collect all "*.test.e2e.js" files in this directory and build a test for each.
7979func TestE2e(t *testing.T) {
8080- // Find the paths of all e2e test files in test test directory.
8080+ // Find the paths of all e2e test files in test directory.
8181 searchGlob := filepath.Join(filepath.Dir(setting.AppPath), "tests", "e2e", "*.test.e2e.js")
8282 paths, err := filepath.Glob(searchGlob)
8383 if err != nil {