Browse Source

Make BridgeLine::random() non-testing (for now)

Vecna 2 years ago
parent
commit
1826f0f3c3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/bridge_table.rs

+ 1 - 1
src/bridge_table.rs

@@ -167,7 +167,7 @@ impl BridgeLine {
         }
     }
     /// Create a random BridgeLine for testing
-    #[cfg(test)]
+    //#[cfg(test)]
     pub fn random() -> Self {
         let mut rng = rand::thread_rng();
         let mut res: Self = Default::default();