提交 d1c46089 编写于 作者: N Nigel Tao

Fix testdata paths after moving files up one level.

上级 bf25f8ce
...@@ -17,7 +17,7 @@ import ( ...@@ -17,7 +17,7 @@ import (
) )
func parseTestdataFont(name string) (font *Font, testdataIsOptional bool, err error) { func parseTestdataFont(name string) (font *Font, testdataIsOptional bool, err error) {
b, err := ioutil.ReadFile(fmt.Sprintf("../../testdata/%s.ttf", name)) b, err := ioutil.ReadFile(fmt.Sprintf("../testdata/%s.ttf", name))
if err != nil { if err != nil {
// The "x-foo" fonts are optional tests, as they are not checked // The "x-foo" fonts are optional tests, as they are not checked
// in for copyright or file size reasons. // in for copyright or file size reasons.
...@@ -282,7 +282,7 @@ func testScaling(t *testing.T, h Hinting) { ...@@ -282,7 +282,7 @@ func testScaling(t *testing.T, h Hinting) {
hintingStr = "with" hintingStr = "with"
} }
f, err := os.Open(fmt.Sprintf( f, err := os.Open(fmt.Sprintf(
"../../testdata/%s-%dpt-%s-hinting.txt", tc.name, tc.size, hintingStr)) "../testdata/%s-%dpt-%s-hinting.txt", tc.name, tc.size, hintingStr))
if err != nil { if err != nil {
t.Errorf("%s: Open: %v", tc.name, err) t.Errorf("%s: Open: %v", tc.name, err)
continue continue
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册