Skip to content

Commit

Permalink
fix the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
alnutile committed Aug 6, 2024
1 parent a06f2dc commit 98210b1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/Feature/Models/MessageTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public function test_run(): void

$message = Message::factory()->user()->create([
'meta_data' => MetaDataDto::from([
'tool' => 'completion',
'tool' => 'chat',
]),
]);

Expand Down Expand Up @@ -115,14 +115,14 @@ public function test_rerun(): void
$message = Message::factory()->user()->create([
'chat_id' => $chat->id,
'meta_data' => MetaDataDto::from([
'tool' => 'completion',
'tool' => 'chat',
]),
]);

$messageAssistant = Message::factory()->assistant()->create([
'chat_id' => $chat->id,
'meta_data' => MetaDataDto::from([
'tool' => 'completion',
'tool' => 'chat',
]),
]);

Expand Down

0 comments on commit 98210b1

Please sign in to comment.