From a3842155c5e4fc96e4c8b514719cf0da872f8208 Mon Sep 17 00:00:00 2001 From: Christian Schwarz Date: Mon, 17 Feb 2020 17:56:48 +0100 Subject: [PATCH] zrepl test filesystems: support snap job type --- client/testcmd.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/testcmd.go b/client/testcmd.go index 4b5dffb..d430c6d 100644 --- a/client/testcmd.go +++ b/client/testcmd.go @@ -60,6 +60,8 @@ func runTestFilterCmd(subcommand *cli.Subcommand, args []string) error { confFilter = j.Filesystems case *config.PushJob: confFilter = j.Filesystems + case *config.SnapJob: + confFilter = j.Filesystems default: return fmt.Errorf("job type %T does not have filesystems filter", j) }