Skip to content

Commit 694108b

Browse files
Fix develop branch.
1 parent 2023713 commit 694108b

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

test/fixtures/helpers.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,9 @@ def get_repo_path():
2929
self_name = locals()['__file__']
3030
else:
3131
self_name = __name__
32-
file_path = self_name.split("Project_Hype-Berry")[0]
33-
root = os.path.join(file_path, "Project_Hype-Berry")
32+
assert 'helpers.py' in self_name
33+
root = self_name.split("test")[0]
34+
assert 'helpers.py' not in root
3435
return root
3536

3637
@classmethod

test/integration/oneWaySyncTests/end_to_end_integration_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ class TestEndToEndIntegration:
110110

111111
# pylint: disable=redefined-outer-name, unused-argument
112112
@pytest.mark.parametrize("pickle_in,expected,iters",
113-
[(empty_pickle(), 4, 0), (read_pickle(), 8, 69)],
113+
[(empty_pickle(), 4, 0), (read_pickle(), 8, 79)],
114114
indirect=True)
115115
def test_end_to_end(self,
116116
auth_cfg,
@@ -163,7 +163,7 @@ def test_end_to_end(self,
163163
the_headers = captor(ANY(dict))
164164

165165
# catch-all matcher
166-
verify(requests, times=81).put(...)
166+
verify(requests, times=89).put(...)
167167

168168
verify(requests, times=iters).put(url=the_url,
169169
data=not_(arg_that(date_matcher)),

0 commit comments

Comments
 (0)