Johannes Hofmann 7 years ago
parent
commit
86d79ff4e3
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/config.rs

+ 1
- 1
src/config.rs View File

458
     #[test]
458
     #[test]
459
     fn default_config() {
459
     fn default_config() {
460
         let mut config = Config::from_toml_str::<&str>(DEFAULT_CONFIG, None).unwrap();
460
         let mut config = Config::from_toml_str::<&str>(DEFAULT_CONFIG, None).unwrap();
461
-        config.add_tile_sources_from_str(DEFAULT_TILE_SOURCES, None).unwrap();
461
+        config.add_tile_sources_from_str::<&str>(DEFAULT_TILE_SOURCES, None).unwrap();
462
     }
462
     }
463
 }
463
 }