Skip to content
This repository has been archived by the owner on Jan 7, 2022. It is now read-only.

Commit

Permalink
Fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
mariomka committed Oct 14, 2018
1 parent bc28704 commit caa4cd2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/specs/Datetime.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ describe('Datetime.vue', function () {

it('should be a time with the specified time zone', function (done) {
const vm = createVM(this,
`<Datetime v-model="datetime" type='time' zone='UTC-03:00'></Datetime>`,
`<Datetime v-model="datetime" type="time" zone="UTC-03:00"></Datetime>`,
{
components: { Datetime },
data () {
Expand All @@ -409,7 +409,7 @@ describe('Datetime.vue', function () {

it('should be a time in the local time zone on default', function (done) {
const vm = createVM(this,
`<Datetime v-model="datetime" type='time'></Datetime>`,
`<Datetime v-model="datetime" type="time"></Datetime>`,
{
components: { Datetime },
data () {
Expand All @@ -429,7 +429,7 @@ describe('Datetime.vue', function () {

it('should be a time converted to utc', function () {
const vm = createVM(this,
`<Datetime v-model="datetime" type='time' value-zone="UTC-05:00"></Datetime>`,
`<Datetime v-model="datetime" type="time" value-zone="UTC-05:00"></Datetime>`,
{
components: { Datetime },
data () {
Expand Down

0 comments on commit caa4cd2

Please sign in to comment.