Skip to content

Commit

Permalink
fix failed TC
Browse files Browse the repository at this point in the history
  • Loading branch information
dongwoo committed Nov 3, 2015
1 parent 3f6cd66 commit d5b904c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/js/addon.net.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ describe('addon.net', function() {
jasmine.getFixtures().fixturesPath = 'base/';
loadFixtures('test/fixtures/addon.net.html');
$grid = $('#grid');
grid = new ne.Grid({
grid = new tui.Grid({
el: $grid,
columnModelList: columnModelList,
selectType: 'checkbox'
Expand Down
2 changes: 1 addition & 1 deletion test/js/core.paste.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ describe('grid.core.paste()', function() {

function createColumnModelList(names) {
var models = [];
ne.util.forEachArray(names, function(name, editType) {
tui.util.forEachArray(names, function(name, editType) {
models.push({
title: name,
columnName: name,
Expand Down
2 changes: 1 addition & 1 deletion test/js/core.util.form.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ describe('core.util.form', function() {

it('name에 해당하는 input요소들을 배열 형태로 반환한다.', function() {
var names = ['delivery_number', 'user_name', 'weather'];
ne.util.forEachArray(names, function(name) {
tui.util.forEachArray(names, function(name) {
var element = util.form.getFormElement($form, name);
expect(element.length).toBe(1);
expect(element[0].name).toBe(name);
Expand Down
2 changes: 1 addition & 1 deletion test/js/view.layout.toolbar.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ describe('view.frame.toolbar', function() {
});

it('Pagination Instance를 잘 생성하는지 확인한다.', function() {
expect(pagination.instance instanceof ne.component.Pagination).toBe(true);
expect(pagination.instance instanceof tui.component.Pagination).toBe(true);
});

it('이미 pagination instance가 존재하면 instance를 다시 생성하지 않는다', function() {
Expand Down

0 comments on commit d5b904c

Please sign in to comment.