From fc75cf9d458c5ca29338b27334b658296ad25ae2 Mon Sep 17 00:00:00 2001 From: Adam Wathan Date: Tue, 5 Mar 2019 11:42:31 -0500 Subject: [PATCH] Fix code style --- __tests__/plugins/textColor.test.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/__tests__/plugins/textColor.test.js b/__tests__/plugins/textColor.test.js index 3f05c3b7e..a3a231a34 100644 --- a/__tests__/plugins/textColor.test.js +++ b/__tests__/plugins/textColor.test.js @@ -54,10 +54,10 @@ test('colors can be a nested object', () => { { utilities: { '.text-purple': { color: 'purple' }, - '.text-white-25': { 'color': 'rgba(255,255,255,.25)' }, - '.text-white-50': { 'color': 'rgba(255,255,255,.5)' }, - '.text-white-75': { 'color': 'rgba(255,255,255,.75)' }, - '.text-white': { 'color': '#fff' }, + '.text-white-25': { color: 'rgba(255,255,255,.25)' }, + '.text-white-50': { color: 'rgba(255,255,255,.5)' }, + '.text-white-75': { color: 'rgba(255,255,255,.75)' }, + '.text-white': { color: '#fff' }, '.text-red-1': { color: 'rgb(33,0,0)' }, '.text-red-2': { color: 'rgb(67,0,0)' }, '.text-red-3': { color: 'rgb(100,0,0)' },