summaryrefslogtreecommitdiff
path: root/tests/test_cpp_domain.py
diff options
context:
space:
mode:
authorRobert Lehmann <mail@robertlehmann.de>2011-10-08 14:55:18 +0200
committerRobert Lehmann <mail@robertlehmann.de>2011-10-08 14:55:18 +0200
commit1a287bb7e29fe05349d5b13acd0deed085a03612 (patch)
tree4de37b7ecf91704651bc978822fa932f2e12e2dc /tests/test_cpp_domain.py
parentea5d3359e9cb4c78f2e11c76a5f2082d6d72da79 (diff)
downloadsphinx-git-1a287bb7e29fe05349d5b13acd0deed085a03612.tar.gz
Change default visibility for C++ superclasses.
Diffstat (limited to 'tests/test_cpp_domain.py')
-rw-r--r--tests/test_cpp_domain.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_cpp_domain.py b/tests/test_cpp_domain.py
index ff44c8dbf..3ab8ece4c 100644
--- a/tests/test_cpp_domain.py
+++ b/tests/test_cpp_domain.py
@@ -82,10 +82,10 @@ def test_bases():
assert unicode(parse('class', x)) == x
x = 'A : private B'
- assert unicode(parse('class', x)) == x
+ assert unicode(parse('class', x)) == 'A : B'
x = 'A : public B'
- assert unicode(parse('class', x)) == 'A : B'
+ assert unicode(parse('class', x)) == x
x = 'A : B, C'
assert unicode(parse('class', x)) == x