From 62ab02acf03f6f8249ebd93a2cde7c90e5f21568 Mon Sep 17 00:00:00 2001 From: Jake Daynes Date: Fri, 13 Mar 2026 02:55:56 -0700 Subject: [PATCH] fix: reorder test case for scan test --- internal/scan/nmap/scanner_test.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/internal/scan/nmap/scanner_test.go b/internal/scan/nmap/scanner_test.go index 4ab4db8..0c6e7da 100644 --- a/internal/scan/nmap/scanner_test.go +++ b/internal/scan/nmap/scanner_test.go @@ -71,18 +71,18 @@ func TestScanner_Scan(t *testing.T) { Port: 8554, Secure: false, }, - { - Device: "Model C", - Address: netip.MustParseAddr("192.0.2.10"), - Port: 322, - Secure: true, - }, { Device: "Model A", Address: netip.MustParseAddr("192.0.2.11"), Port: 8554, Secure: false, }, + { + Device: "Model C", + Address: netip.MustParseAddr("192.0.2.10"), + Port: 322, + Secure: true, + }, { Device: "Model C", Address: netip.MustParseAddr("192.0.2.11"),