Skip to content

Commit

Permalink
fix: change in DataType
Browse files Browse the repository at this point in the history
  • Loading branch information
ShlomiShitrit committed Oct 6, 2024
1 parent c56ef6b commit 2ebfd68
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/app/__tests__/useInput.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import "@testing-library/jest-dom/jest-globals";
import "@testing-library/jest-dom";
import { renderHook, act } from "@testing-library/react";
import useInput from "@/app/hooks/useInput";
import { Bot, DataType, Message } from "@/app/general/interfaces";
import { sender } from "@/app/general/types";
import { Bot, Message } from "@/app/general/interfaces";
import { sender, DataType } from "@/app/general/types";
import {
botMessages,
botRestartMessages,
Expand All @@ -23,15 +23,15 @@ const botMock: Bot = {
{
_id: "name",
displayName: "Name",
dataType: DataType.String,
dataType: "string",
operatorsArray: [
{
id: "equals",
displayName: "equals",
params: [
{
isArray: false,
dataType: DataType.String,
dataType: "string",
name: "cell",
},
],
Expand All @@ -42,7 +42,7 @@ const botMock: Bot = {
params: [
{
isArray: false,
dataType: DataType.String,
dataType: "string",
name: "cell",
},
],
Expand Down Expand Up @@ -74,7 +74,7 @@ const botMock: Bot = {
params: [
{
isArray: false,
dataType: DataType.String,
dataType: "string",
name: "cell",
},
],
Expand All @@ -85,7 +85,7 @@ const botMock: Bot = {
params: [
{
isArray: false,
dataType: DataType.String,
dataType: "string",
name: "cell",
},
],
Expand Down

0 comments on commit 2ebfd68

Please sign in to comment.