Skip to content

Commit

Permalink
Bug fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
whart222 committed Mar 3, 2013
1 parent 74033c0 commit 1274444
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/cxxtest/cxxtest_fog.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ def scanInputFiles(files, _options):
if parse_info.index[key].scope_t == "class" and parse_info.is_baseclass(key,"CxxTest::TestSuite"):
name=parse_info.index[key].name
if key.startswith('::'):
fullname = key
else:
fullname = key[2:]
else:
fullname = key
suite = {
'fullname' : fullname,
'name' : name,
Expand Down

0 comments on commit 1274444

Please sign in to comment.