File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -25,4 +25,4 @@ def plot():
25
25
26
26
def test ():
27
27
phash = Phash (plot ())
28
- assert phash .phash == '1f86e1f521c6e5c1 ' , phash .get_details ()
28
+ assert phash .phash == '1f36e5ce21c1e5c1 ' , phash .get_details ()
Original file line number Diff line number Diff line change @@ -51,12 +51,12 @@ def plot2():
51
51
52
52
53
53
@pytest .mark .parametrize (
54
- 'plot, phash ' , [
54
+ 'plot, reference_phash ' , [
55
55
(plot1 , '455361ec211d72fb' ),
56
56
(plot2 , '7558d3b30f634b06' ),
57
57
]
58
58
)
59
- def test (plot , phash ):
59
+ def test (plot , reference_phash ):
60
60
phash = helpers .Phash (plot ())
61
- assert phash .phash == phash , phash .get_details ()
61
+ assert phash .phash == reference_phash , phash .get_details ()
62
62
return
Original file line number Diff line number Diff line change @@ -45,14 +45,14 @@ def plot2():
45
45
46
46
47
47
@pytest .mark .parametrize (
48
- 'plot, phash ' , [
48
+ 'plot, reference_phash ' , [
49
49
(plot1 , 'f55a0bb503fd0354' ),
50
50
(plot2 , '5f5ca33da3816983' ),
51
51
]
52
52
)
53
- def test (plot , phash ):
53
+ def test (plot , reference_phash ):
54
54
phash = helpers .Phash (plot ())
55
- assert phash .phash == phash , phash .get_details ()
55
+ assert phash .phash == reference_phash , phash .get_details ()
56
56
return
57
57
58
58
You can’t perform that action at this time.
0 commit comments