Fix movies sorting, scene studio editing (#1478)

* Fix movies:sort_by->scenes_count, scene:edit->remove studio
This commit is contained in:
bnkai
2021-06-04 02:21:17 +03:00
committed by GitHub
parent 2ce4d9f0d8
commit ad0a9d0707
6 changed files with 40 additions and 9 deletions

View File

@@ -6,7 +6,7 @@ import (
// Note that the public API returns "" instead.
func TestOshashEmpty(t *testing.T) {
var size int64 = 0
var size int64
head := make([]byte, chunkSize)
tail := make([]byte, chunkSize)
want := "0000000000000000"
@@ -23,7 +23,7 @@ func TestOshashEmpty(t *testing.T) {
func TestOshashCollisions(t *testing.T) {
buf1 := []byte("this is dumb")
buf2 := []byte("dumb is this")
var size int64 = int64(len(buf1))
var size = int64(len(buf1))
head := make([]byte, chunkSize)
tail1 := make([]byte, chunkSize)