From 79fbade92ad29dc3b56cfc49a0bce7290ea01ed7 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Thu, 16 Aug 2012 21:20:05 -0700 Subject: [PATCH] Minor unit test cleanup. Former-commit-id: 3243247d9da53f3a12cd19bec822bb43eb7f315e --- test/test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test.js b/test/test.js index 62dec50b6..c3804c36a 100644 --- a/test/test.js +++ b/test/test.js @@ -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,