Skip to content

Commit

Permalink
Merge branch 'master' of github.com:shawnbrown/datatest
Browse files Browse the repository at this point in the history
  • Loading branch information
shawnbrown committed Jun 22, 2018
2 parents afbcbc8 + d7f6259 commit ae190f3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions datatest/__past__/api07_diffs.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ def __hash__(self):

def __eq__(self, other):
diff_lookup = {
xMissing: datatest.Missing,
xExtra: datatest.Extra,
xDeviation: datatest.Deviation,
xInvalid: datatest.Invalid,
xMissing: datatest.difference.Missing,
xExtra: datatest.difference.Extra,
xDeviation: datatest.difference.Deviation,
xInvalid: datatest.difference.Invalid,
}
self_class = self.__class__
self_class = diff_lookup.get(self_class, self_class)
Expand Down
1 change: 1 addition & 0 deletions datatest/__past__/api08.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
from datatest._utils import string_types
from datatest._utils import iterpeek
from datatest.allowance import BaseAllowance
from datatest import Invalid
from datatest.difference import NOTFOUND

datatest.DataResult = datatest.Result
Expand Down

0 comments on commit ae190f3

Please sign in to comment.