Minor unit test cleanup.

Former-commit-id: 3243247d9da53f3a12cd19bec822bb43eb7f315e
This commit is contained in:
John-David Dalton
2012-08-16 21:20:05 -07:00
parent bf508e453e
commit 79fbade92a

View File

@@ -166,8 +166,8 @@
QUnit.module('lodash.clone');
(function() {
function Klass() { this.b = 1; }
Klass.prototype = { 'a': 1 };
function Klass() { this.a = 1; }
Klass.prototype = { 'b': 1 };
var nonCloneable = {
'an arguments object': arguments,