| Index: gm/rebaseline_server/imagepairset.py
|
| diff --git a/gm/rebaseline_server/imagepairset.py b/gm/rebaseline_server/imagepairset.py
|
| index 25d46a9e7be8ea4b096ebe4abdf202eff8497fc2..199fd4212a682d2950dab9a9cf8cb2c189f4533a 100644
|
| --- a/gm/rebaseline_server/imagepairset.py
|
| +++ b/gm/rebaseline_server/imagepairset.py
|
| @@ -14,7 +14,7 @@ import posixpath
|
|
|
| # Local imports
|
| import column
|
| -import imagepair
|
| +import imagediffdb
|
|
|
| # Keys used within dictionary representation of ImagePairSet.
|
| # NOTE: Keep these in sync with static/constants.js
|
| @@ -157,12 +157,12 @@ class ImagePairSet(object):
|
| KEY__IMAGESETS__SET__DIFFS: {
|
| key_description: 'color difference per channel',
|
| key_base_url: posixpath.join(
|
| - self._diff_base_url, 'diffs'),
|
| + self._diff_base_url, imagediffdb.RGBDIFFS_SUBDIR),
|
| },
|
| KEY__IMAGESETS__SET__WHITEDIFFS: {
|
| key_description: 'differing pixels in white',
|
| key_base_url: posixpath.join(
|
| - self._diff_base_url, 'whitediffs'),
|
| + self._diff_base_url, imagediffdb.WHITEDIFFS_SUBDIR),
|
| },
|
| },
|
| }
|
|
|