Moved operand into action.
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 2s

This commit is contained in:
2026-02-08 12:57:29 -05:00
parent 3f16284682
commit eca86a53b9
8 changed files with 88 additions and 429 deletions

View File

@@ -317,7 +317,7 @@ impl Indexes {
#[cfg(test)]
mod indexes {
use super::*;
use crate::{document::field::FieldType, message::wrapper::Operand};
use crate::action::{FieldType, Operand};
fn get_fields(count: usize) -> Vec<Field> {
let mut output = Vec::new();
@@ -813,8 +813,9 @@ impl DocumentFile {
mod document_files {
use super::*;
use crate::{
action::Operand,
document::field::FieldType,
message::wrapper::{Addition, Delete, Operand},
message::wrapper::{Addition, Delete},
name::{Name, Names},
support_tests::TIMEOUT,
};