Skip to content
This repository was archived by the owner on Sep 26, 2025. It is now read-only.

Commit 0a6fbb4

Browse files
committed
Fix formatting
1 parent 1d09322 commit 0a6fbb4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • src/sources/kubernetes_logs

src/sources/kubernetes_logs/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1200,7 +1200,7 @@ mod tests {
12001200
"#;
12011201
let config: Config = toml::from_str(toml_config).unwrap();
12021202
assert_eq!(config.add_namespace_fields, false);
1203-
1203+
12041204
let default_toml = "";
12051205
let default_config: Config = toml::from_str(default_toml).unwrap();
12061206
assert_eq!(default_config.add_namespace_fields, true);
@@ -1218,13 +1218,13 @@ mod tests {
12181218
add_namespace_fields: false,
12191219
..Default::default()
12201220
};
1221-
1221+
12221222
// The main validation is that the flag is passed through correctly
12231223
// and can be used in conditional logic
12241224
assert!(should_watch_namespaces(&enabled_config));
12251225
assert!(!should_watch_namespaces(&disabled_config));
12261226
}
1227-
1227+
12281228
// Helper function to simulate the conditional logic from the run method
12291229
fn should_watch_namespaces(config: &Config) -> bool {
12301230
config.add_namespace_fields

0 commit comments

Comments
 (0)