diff options
| author | Don Kjer <don@lindenlab.com> | 2012-09-09 12:12:19 +0000 |
|---|---|---|
| committer | Don Kjer <don@lindenlab.com> | 2012-09-09 12:12:19 +0000 |
| commit | e1580128ab2a42ecd4019ef35069f9e939dc4ff2 (patch) | |
| tree | 9ca329417e96ae7fa09261c843623349be759d5f /indra/llcharacter/tests/lljoint_test.cpp | |
| parent | b77e2eff481512667c35bc99946fb62eca1be169 (diff) | |
Fixed crashes on login. Moved most of the remaining character/skeleton generation code into llappearance. Moved non-rendering related LLViewerJoint functionality into LLAvatarJoint.
Diffstat (limited to 'indra/llcharacter/tests/lljoint_test.cpp')
| -rw-r--r-- | indra/llcharacter/tests/lljoint_test.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/llcharacter/tests/lljoint_test.cpp b/indra/llcharacter/tests/lljoint_test.cpp index e92aa832d6..da151808f2 100644 --- a/indra/llcharacter/tests/lljoint_test.cpp +++ b/indra/llcharacter/tests/lljoint_test.cpp @@ -150,11 +150,11 @@ namespace tut template<> template<> void lljoint_object::test<11>() { - LLJoint lljoint("parent"); S32 joint_num = 12; - lljoint.setJointNum(joint_num); + LLJoint lljoint(joint_num); + lljoint.setName("parent"); S32 jointNum = lljoint.getJointNum(); - ensure("setJointNum()/getJointNum failed ", (jointNum == joint_num)); + ensure("getJointNum failed ", (jointNum == joint_num)); } template<> template<> |
