refactor(tvix/nix-compat): update expect_err strings
Make it more explicit that we expect the from_string calls to fail here. Change-Id: Ib3d46fc0850e364125e3548670ef301eeea2e45c Reviewed-on: https://cl.tvl.fyi/c/depot/+/8565 Autosubmit: flokli <flokli@flokli.de> Reviewed-by: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
This commit is contained in:
		
							parent
							
								
									a9a2fce27e
								
							
						
					
					
						commit
						46ca98a7a2
					
				
					 1 changed files with 4 additions and 4 deletions
				
			
		| 
						 | 
				
			
			@ -161,13 +161,13 @@ mod tests {
 | 
			
		|||
    #[test]
 | 
			
		||||
    fn invalid_hash_length() {
 | 
			
		||||
        StorePath::from_string("00bgd045z0d4icpbc2yy-net-tools-1.60_p20170221182432")
 | 
			
		||||
            .expect_err("No error raised.");
 | 
			
		||||
            .expect_err("must fail");
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    #[test]
 | 
			
		||||
    fn invalid_encoding_hash() {
 | 
			
		||||
        StorePath::from_string("00bgd045z0d4icpbc2yyz4gx48aku4la-net-tools-1.60_p20170221182432")
 | 
			
		||||
            .expect_err("No error raised.");
 | 
			
		||||
            .expect_err("must fail");
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    #[test]
 | 
			
		||||
| 
						 | 
				
			
			@ -175,13 +175,13 @@ mod tests {
 | 
			
		|||
        StorePath::from_string(
 | 
			
		||||
            "00bgd045z0d4icpbc2yyz4gx48aku4la-net-tools-1.60_p20170221182432/bin/arp",
 | 
			
		||||
        )
 | 
			
		||||
        .expect_err("No error raised.");
 | 
			
		||||
        .expect_err("must fail");
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    #[test]
 | 
			
		||||
    fn no_dash_between_hash_and_name() {
 | 
			
		||||
        StorePath::from_string("00bgd045z0d4icpbc2yyz4gx48ak44lanet-tools-1.60_p20170221182432")
 | 
			
		||||
            .expect_err("No error raised.");
 | 
			
		||||
            .expect_err("must fail");
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    #[test]
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue