Revert "mount2,cmount: skip unreliable tests #4171"

The VFS is now reliable enough so that the mount tests don't fail.

This reverts commit 4808958f93.
This commit is contained in:
Nick Craig-Wood 2020-06-15 22:01:40 +01:00
parent fa472a340e
commit ce065614e2
2 changed files with 0 additions and 4 deletions

View File

@ -11,11 +11,9 @@ package cmount
import (
"testing"
"github.com/rclone/rclone/fstest/testy"
"github.com/rclone/rclone/vfs/vfstest"
)
func TestMount(t *testing.T) {
testy.SkipUnreliable(t)
vfstest.RunTests(t, false, mount)
}

View File

@ -5,11 +5,9 @@ package mount2
import (
"testing"
"github.com/rclone/rclone/fstest/testy"
"github.com/rclone/rclone/vfs/vfstest"
)
func TestMount(t *testing.T) {
testy.SkipUnreliable(t)
vfstest.RunTests(t, false, mount)
}