archiver: tests: combine numQueued declaration with next-instruction assignment

这个提交包含在:
Kyle Evans
2020-05-07 19:34:03 -05:00
父节点 9fc8bedb56
当前提交 bcc5214023
+1 -3
查看文件
@@ -49,9 +49,7 @@ func waitForCount(t *testing.T, num int) {
} }
func releaseOneEntry(t *testing.T, inFlight []*ArchiveRequest) { func releaseOneEntry(t *testing.T, inFlight []*ArchiveRequest) {
var numQueued int numQueued := len(archiveInProgress)
numQueued = len(archiveInProgress)
// Release one, then WaitForCompletion. We'll get signalled when ready. // Release one, then WaitForCompletion. We'll get signalled when ready.
// This works out to be quick and race-free, as we'll get signalled when the // This works out to be quick and race-free, as we'll get signalled when the