tests/vector.cc
branchpyrit
changeset 91 9d66d323c354
parent 84 6f7fe14782c2
--- a/tests/vector.cc	Tue Apr 29 23:31:08 2008 +0200
+++ b/tests/vector.cc	Fri May 02 13:27:47 2008 +0200
@@ -3,11 +3,11 @@
 
 int main() {
 	{
-	/* Vector3 */
-	Vector3 a(1, 2, 3);
-	cout << "=== Vector3 test ===" << endl;
+	/* Vector */
+	Vector a(1, 2, 3);
+	cout << "=== Vector test ===" << endl;
 	cout << "a = " << a << endl;
-	Vector3 b(2, 3, 2);
+	Vector b(2, 3, 2);
 	cout << "b = " << b << endl;
 
 	cout << "a + b = " << a + b << endl;