Skip to content

Commit

Permalink
Fix tests after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
OEvgeny committed Jan 10, 2024
1 parent df1ad28 commit 35484e2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { type WebChatActivity } from '../../../../packages/core';
import { type WebChatActivity } from '../../../../lib/index';

// All activities from bot must be from server.
const activity: WebChatActivity = {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { type WebChatActivity } from '../../../../packages/core';
import { type WebChatActivity } from '../../../../lib/index';

// All activities that failed to send, are activities that never reach the server (a.k.a. activity-in-transit).
const activity: WebChatActivity = {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { WebChatActivity } from '../../../../lib/index';
import { type WebChatActivity } from '../../../../lib/index';

// All activities that are sending, are activities that did not reach the server yet (a.k.a. activity-in-transit).
const activity: WebChatActivity = {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { type WebChatActivity } from '../../../../packages/core';
import { type WebChatActivity } from '../../../../lib/index';

// All activities which are "sent", must be from server.
const activity: WebChatActivity = {
Expand Down

0 comments on commit 35484e2

Please sign in to comment.