我在这里继承了一个网站,加载字体时出现403错误。具体字体为bookman旧样式。它仍会以chrome和Firefox的形式显示,但不会以safari的形式显示。
这是标题中的代码,据我所知,没有http或https是正确的,如果我向其中添加https,链接也会加载。
<link rel="stylesheet" id="cherry-google-fonts-css" href="//fonts.googleapis.com/css?family=Montserrat%3A700%2Cregular%7CBookman+Old+Style%3A700%7CAbril+Fatface%3Aregular&subset=latin%2Clatin-ext&ver=5.0.3" type="text/css" media="all">
任何帮助将不胜感激,可能是我从未想到过的简单事情。
谢谢!
答案 0 :(得分:0)
....
var invokedCorrectly = false;
dataStore.Setup(x => x.UpdateEmployee(It.Is<Employee>(e => e.IsEmployed == false)))
.Callback<Employee>(x=> invokedCorrectly = true);
//Act
FireEmployee(dataStore.Object, robert);
//Assert
Assert.IsTrue(invokedCorrectly);