Fix base64 test wrt. Hint no longer taking coordinate in ctor
This commit is contained in:
		
							parent
							
								
									a4ccc59833
								
							
						
					
					
						commit
						f8bd22dc6f
					
				@ -47,7 +47,7 @@ BOOST_AUTO_TEST_CASE(hint_encoding_decoding_roundtrip)
 | 
				
			|||||||
    const PhantomNode phantom;
 | 
					    const PhantomNode phantom;
 | 
				
			||||||
    const osrm::test::MockDataFacade facade{};
 | 
					    const osrm::test::MockDataFacade facade{};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    const Hint hint{coordinate, phantom, facade.GetCheckSum()};
 | 
					    const Hint hint{phantom, facade.GetCheckSum()};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    const auto base64 = hint.ToBase64();
 | 
					    const auto base64 = hint.ToBase64();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -68,7 +68,7 @@ BOOST_AUTO_TEST_CASE(hint_encoding_decoding_roundtrip_bytewise)
 | 
				
			|||||||
    const PhantomNode phantom;
 | 
					    const PhantomNode phantom;
 | 
				
			||||||
    const osrm::test::MockDataFacade facade{};
 | 
					    const osrm::test::MockDataFacade facade{};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    const Hint hint{coordinate, phantom, facade.GetCheckSum()};
 | 
					    const Hint hint{phantom, facade.GetCheckSum()};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    const auto decoded = Hint::FromBase64(hint.ToBase64());
 | 
					    const auto decoded = Hint::FromBase64(hint.ToBase64());
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user