Skip to content

Commit af97c30

Browse files
authored
Merge pull request #21 from NSLS2/unittest-mock
Remove external dependency on 'mock'
2 parents 7a69312 + 4cc4848 commit af97c30

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

tests/python/operator_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import pytest
44

55
import unittest
6-
import mock
6+
from unittest import mock
77

88
# Add fixtures to sys.path
99
sys.path.append(os.path.join(os.path.dirname(__file__), 'fixtures')) # noqa

tests/python/requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pytest
2-
mock
2+
# dm3_lib = {git = "https://github.com/piraynal/pyDM3reader", tag = "v1.5"}
33
diskcache
44
h5py
55
requests

0 commit comments

Comments
 (0)