Skip to content

Commit

Permalink
Merge pull request iterative#2482 from efiop/master
Browse files Browse the repository at this point in the history
test: repro: fix link types
  • Loading branch information
efiop authored Sep 10, 2019
2 parents 2c003fd + 384fd4c commit 9fa6bee
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/func/test_repro.py
Original file line number Diff line number Diff line change
Expand Up @@ -810,7 +810,7 @@ def cache_scheme(self):

@property
def cache_type(self):
return "hardlink"
return "copy"

@property
def scheme(self):
Expand Down Expand Up @@ -997,10 +997,6 @@ def should_test(self):
def scheme(self):
return "hdfs"

@property
def cache_type(self):
return "copy"

@property
def bucket(self):
return "{}@127.0.0.1".format(getpass.getuser())
Expand Down Expand Up @@ -1108,6 +1104,10 @@ def setUp(self):
self.assertEqual(ret, 0)
self.dvc = DvcRepo(".")

@property
def cache_type(self):
return "hardlink"

def should_test(self):
return True

Expand Down

0 comments on commit 9fa6bee

Please sign in to comment.