summaryrefslogtreecommitdiff
path: root/HACKING.rst
diff options
context:
space:
mode:
Diffstat (limited to 'HACKING.rst')
-rw-r--r--HACKING.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/HACKING.rst b/HACKING.rst
index 48e4ed6b8f..0d710b51b6 100644
--- a/HACKING.rst
+++ b/HACKING.rst
@@ -31,6 +31,7 @@ Neutron Specific Commandments
- [N343] Production code must not import from neutron.tests.*
- [N344] Python 3: Do not use filter(lambda obj: test(obj), data). Replace it
with [obj for obj in data if test(obj)].
+- [N345] Detect wrong usage with assertEqual(None, A) and assertEqual(A, None).
Creating Unit Tests
-------------------