Skip to content

Commit 4f16e91

Browse files
psteinroeclaude
andcommitted
style: apply rustfmt to test files
Fixed import ordering and line length formatting issues. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 4e9757f commit 4f16e91

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

crates/pgls_analyser/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,8 @@ impl<'a> Analyser<'a> {
116116
mod tests {
117117
use core::slice;
118118

119-
use pgls_analyse::{AnalysisFilter, RuleFilter};
120119
use crate::LinterOptions;
120+
use pgls_analyse::{AnalysisFilter, RuleFilter};
121121
use pgls_console::{
122122
Markup,
123123
fmt::{Formatter, Termcolor},

crates/pgls_analyser/tests/rules_tests.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ use core::slice;
22
use std::{collections::HashMap, fmt::Write, fs::read_to_string, path::Path};
33

44
use pgls_analyse::{AnalysisFilter, RuleFilter};
5-
use pgls_analyser::{AnalysableStatement, Analyser, AnalyserConfig, AnalyserParams, LinterDiagnostic, LinterOptions};
5+
use pgls_analyser::{
6+
AnalysableStatement, Analyser, AnalyserConfig, AnalyserParams, LinterDiagnostic, LinterOptions,
7+
};
68
use pgls_console::StdDisplay;
79
use pgls_diagnostics::PrintDiagnostic;
810

0 commit comments

Comments
 (0)