Skip to content

Commit

Permalink
Merge pull request #65 from NetCommons3/issues/1468
Browse files Browse the repository at this point in the history
Issues/1468
  • Loading branch information
s-nakajima committed Aug 4, 2019
2 parents 173b836 + ba8531a commit fc41482
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 104 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Expand Up @@ -6,8 +6,10 @@ php:
- 5.6
- 7.0
- 7.1
- 7.2

sudo: false
dist: trusty

env:
matrix:
Expand Down
99 changes: 0 additions & 99 deletions Test/Case/Config/RoutesTest.php

This file was deleted.

Expand Up @@ -72,7 +72,7 @@ private function __data() {
'CabinetSetting' => array(
'id' => 2,
'cabinet_key' => 'cabinet_key_2',
'use_workflow' => true,
'use_workflow' => '1',
//'use_comment_approval' => true,
//'approval_type' => true,
)
Expand Down
4 changes: 2 additions & 2 deletions Test/Case/Controller/CabinetBlocksController/EditTest.php
Expand Up @@ -65,8 +65,8 @@ private function __data($isEdit) {
$frameId = '6';
//$frameKey = 'frame_3';
if ($isEdit) {
$blockId = '4';
$blockKey = 'block_2';
$blockId = '2';
$blockKey = 'block_1';
$cabinetId = '3';
$cabinetKey = 'cabinet_key_2';
} else {
Expand Down
4 changes: 2 additions & 2 deletions Test/Case/Model/Cabinet/SaveCabinetTest.php
Expand Up @@ -62,8 +62,8 @@ public function setUp() {

Current::$current['Block']['id'] = '2';
Current::$current['Room']['id'] = '1';
Current::$current['Permission']['content_editable']['value'] = true;
Current::$current['Permission']['content_publishable']['value'] = true;
Current::writePermission('1', 'content_editable', true);
Current::writePermission('1', 'content_publishable', true);
}

/**
Expand Down

0 comments on commit fc41482

Please sign in to comment.