wp_enqueue doesn’t load dependencies

You have to define the dependencies for either styles or scripts when you register them. Or, if you’re avoiding the registration completely, then it’s ok to stuff them into the queueing process. See more on the Codex page.

wp_register_style( 'reset', get_template_directory_uri().'/reset.css' );
wp_register_style( 'style', get_template_directory_uri().'/style.css', array( 'reset' ) );

wp_enqueue_style( 'style' );

Also avoid single , inside a function argument definition. This will not work. Better turn on Debugging stuff in your wp-config.php.