@@ -97,7 +97,7 @@ mod tests {
97
97
#[ test]
98
98
fn test_post_commit_hook_reject_in_subfolder ( ) {
99
99
let ( _td, repo) = repo_init ( ) . unwrap ( ) ;
100
- let root = repo. path ( ) . parent ( ) . unwrap ( ) ;
100
+ let root = repo. workdir ( ) . unwrap ( ) ;
101
101
102
102
let hook = b"#!/bin/sh
103
103
echo 'rejected'
@@ -130,7 +130,7 @@ mod tests {
130
130
#[ cfg( unix) ]
131
131
fn test_pre_commit_workdir ( ) {
132
132
let ( _td, repo) = repo_init ( ) . unwrap ( ) ;
133
- let root = repo. path ( ) . parent ( ) . unwrap ( ) ;
133
+ let root = repo. workdir ( ) . unwrap ( ) ;
134
134
let repo_path: & RepoPath =
135
135
& root. as_os_str ( ) . to_str ( ) . unwrap ( ) . into ( ) ;
136
136
let workdir =
@@ -160,7 +160,7 @@ mod tests {
160
160
#[ test]
161
161
fn test_hooks_commit_msg_reject_in_subfolder ( ) {
162
162
let ( _td, repo) = repo_init ( ) . unwrap ( ) ;
163
- let root = repo. path ( ) . parent ( ) . unwrap ( ) ;
163
+ let root = repo. workdir ( ) . unwrap ( ) ;
164
164
165
165
let hook = b"#!/bin/sh
166
166
echo 'msg' > $1
@@ -196,7 +196,7 @@ mod tests {
196
196
fn test_hooks_commit_msg_reject_in_hooks_folder_githooks_moved_absolute (
197
197
) {
198
198
let ( _td, repo) = repo_init ( ) . unwrap ( ) ;
199
- let root = repo. path ( ) . parent ( ) . unwrap ( ) ;
199
+ let root = repo. workdir ( ) . unwrap ( ) ;
200
200
let mut config = repo. config ( ) . unwrap ( ) ;
201
201
202
202
const HOOKS_DIR : & ' static str = "my_hooks" ;
0 commit comments