diff options
author | Johnny Chen <johnny.chen@apple.com> | 2010-09-01 19:59:58 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2010-09-01 19:59:58 +0000 |
commit | cbb4be0c930748b70361dc8c290e01a00d09e09b (patch) | |
tree | cfe7824488c799995dc0a1f6d46dfed986e55196 /lldb/test/bitfields/TestBitfields.py | |
parent | 91b9383b7611804d59afdb3c0041c2cc2091f9c1 (diff) | |
download | bcm5719-llvm-cbb4be0c930748b70361dc8c290e01a00d09e09b.tar.gz bcm5719-llvm-cbb4be0c930748b70361dc8c290e01a00d09e09b.zip |
Changed the test case class names to be noun-like instead of verb-like.
llvm-svn: 112732
Diffstat (limited to 'lldb/test/bitfields/TestBitfields.py')
-rw-r--r-- | lldb/test/bitfields/TestBitfields.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/bitfields/TestBitfields.py b/lldb/test/bitfields/TestBitfields.py index ca88263a4c2..ffd5980967b 100644 --- a/lldb/test/bitfields/TestBitfields.py +++ b/lldb/test/bitfields/TestBitfields.py @@ -5,7 +5,7 @@ import unittest2 import lldb from lldbtest import * -class TestBitfields(TestBase): +class BitfieldsTestCase(TestBase): mydir = "bitfields" |