summaryrefslogtreecommitdiff
path: root/tests/processors
diff options
context:
space:
mode:
authorDavid Cramer <dcramer@gmail.com>2012-02-02 12:54:41 -0800
committerDavid Cramer <dcramer@gmail.com>2012-02-02 12:54:41 -0800
commit46705cb9161380c12775e43fe37a4e9c5e487168 (patch)
tree8f380a637ad7af2f95f196dc126421f622429e03 /tests/processors
parentae51e68939f27c09a065343b6e1cf5a8a22f7a79 (diff)
downloadraven-46705cb9161380c12775e43fe37a4e9c5e487168.tar.gz
SantizePasswordsProcessor is now called SanitizePassworsProcessor
Diffstat (limited to 'tests/processors')
-rw-r--r--tests/processors/tests.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/processors/tests.py b/tests/processors/tests.py
index 948461c..37779ac 100644
--- a/tests/processors/tests.py
+++ b/tests/processors/tests.py
@@ -2,7 +2,7 @@
from mock import Mock
from unittest2 import TestCase
-from raven.processors import SantizePasswordsProcessor
+from raven.processors import SanitizePasswordsProcessor
class SantizePasswordsProcessorTest(TestCase):
@@ -22,7 +22,7 @@ class SantizePasswordsProcessorTest(TestCase):
}
}
- proc = SantizePasswordsProcessor(Mock())
+ proc = SanitizePasswordsProcessor(Mock())
result = proc.process(data)
self.assertTrue('sentry.interfaces.Stacktrace' in result)
@@ -71,7 +71,7 @@ class SantizePasswordsProcessorTest(TestCase):
}
}
- proc = SantizePasswordsProcessor(Mock())
+ proc = SanitizePasswordsProcessor(Mock())
result = proc.process(data)
self.assertTrue('sentry.interfaces.Http' in result)