From a3c377f0584830b7b572ac6f096b2eae18360c79 Mon Sep 17 00:00:00 2001
From: Timotej Lazar <timotej.lazar@fri.uni-lj.si>
Date: Thu, 5 Sep 2019 17:01:18 +0200
Subject: test_prepare_disks: add a missing method to SSHGuestFS

---
 test_prepare_disks.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/test_prepare_disks.py b/test_prepare_disks.py
index 11a01a0..5e865cf 100755
--- a/test_prepare_disks.py
+++ b/test_prepare_disks.py
@@ -35,6 +35,8 @@ class SSHGuestFs:
         self.conn.exec_command('chown {}.{} "{}"'.format(str(owner), str(group), path))
     def command(self, arguments):
         self.conn.exec_command(arguments)
+    def copy_in(self, src, dest):
+        self.cp_r(src, dest)
     def cp(self, src, dest):
         self.conn.exec_command('cp "{}" "{}"'.format(src, dest))
     def cp_a(self, src, dest):
-- 
cgit v1.2.1