From e72f4bcd62cf14ca007caa379d08276607b0dc43 Mon Sep 17 00:00:00 2001
From: Leonardo Balter <leonardo.balter@gmail.com>
Date: Fri, 31 Jul 2015 16:46:14 -0400
Subject: [PATCH] fixup! Add tests for Array.prototype.copyWithin

---
 .../prototype/copyWithin/return-abrupt-from-end-as-symbol.js     | 1 +
 .../prototype/copyWithin/return-abrupt-from-start-as-symbol.js   | 1 +
 2 files changed, 2 insertions(+)

diff --git a/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-end-as-symbol.js b/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-end-as-symbol.js
index 4b38b0aca6..89276666a9 100644
--- a/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-end-as-symbol.js
+++ b/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-end-as-symbol.js
@@ -12,6 +12,7 @@ info: >
   ToInteger(end).
   12. ReturnIfAbrupt(relativeEnd).
   ...
+features: [Symbol]
 ---*/
 
 var s = Symbol(1);
diff --git a/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-start-as-symbol.js b/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-start-as-symbol.js
index 4a56e2d55a..276a7625d9 100644
--- a/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-start-as-symbol.js
+++ b/test/built-ins/Array/prototype/copyWithin/return-abrupt-from-start-as-symbol.js
@@ -11,6 +11,7 @@ info: >
   8. Let relativeStart be ToInteger(start).
   9. ReturnIfAbrupt(relativeStart).
   ...
+features: [Symbol]
 ---*/
 
 var s = Symbol(1);
-- 
GitLab