Commit 033eed5c authored by Jason Swails's avatar Jason Swails
Browse files

Oops, forgot to update the serialization test for the removal of the default

argument.
parent 8a01b345
...@@ -45,9 +45,9 @@ void testSerialization() { ...@@ -45,9 +45,9 @@ void testSerialization() {
// Create a Force. // Create a Force.
AmoebaStretchBendForce force1; AmoebaStretchBendForce force1;
force1.addStretchBend(0, 1, 3, 1.0, 1.2, 150.1, 83.2); force1.addStretchBend(0, 1, 3, 1.0, 1.2, 150.1, 83.2, 100.);
force1.addStretchBend(2, 4, 4, 1.1, 2.2, 180.1, 89.2); force1.addStretchBend(2, 4, 4, 1.1, 2.2, 180.1, 89.2, 100.);
force1.addStretchBend(5, 0, 1, 3.1, 8.2, 140.1, 98.2); force1.addStretchBend(5, 0, 1, 3.1, 8.2, 140.1, 98.2, 100.);
// Serialize and then deserialize it. // Serialize and then deserialize it.
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment