backend: allow wrapping backend tests to run in make quicktest

This commit is contained in:
Nick Craig-Wood 2022-06-29 11:51:46 +01:00
parent c556e98f49
commit 866c873daa
9 changed files with 32 additions and 5 deletions

View file

@ -11,7 +11,8 @@ import (
// TestIntegration runs integration tests against the remote
func TestIntegration(t *testing.T) {
fstests.Run(t, &fstests.Opt{
RemoteName: "",
NilObject: (*local.Object)(nil),
RemoteName: "",
NilObject: (*local.Object)(nil),
QuickTestOK: true,
})
}